Add 'db/local/remote' reference to log string.

Signed-off-by: Camila <hello@camila.codes>
This commit is contained in:
Camila 2022-06-29 15:29:16 +02:00 committed by Matthieu Gallien
parent 4b2298cec3
commit 6be5cb9f78

View file

@ -352,6 +352,7 @@ void ProcessDirectoryJob::processFile(PathTuple path,
const auto serverFileIsLocked = serverEntry.locked == SyncFileItem::LockStatus::LockedItem ? "locked" : "not locked";
const auto localFileIsLocked = dbEntry._lockstate._locked ? "locked" : "not locked";
qCInfo(lcDisco).nospace() << "Processing " << path._original
<< " | (db/local/remote)"
<< " | valid: " << dbEntry.isValid() << "/" << hasLocal << "/" << hasServer
<< " | mtime: " << dbEntry._modtime << "/" << localEntry.modtime << "/" << serverEntry.modtime
<< " | size: " << dbEntry._fileSize << "/" << localEntry.size << "/" << serverEntry.size