From: Matthieu Gallien Date: Mon, 12 Jun 2023 08:33:03 +0000 (+0200) Subject: enable "Processing" log lines again but with some removed data X-Git-Tag: archive/raspbian/3.16.7-1_deb13u1+rpi1~1^2~12^2~10^2~1^2~2 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=44bcfe2e4ae0e2ee209a8d3367788778c8b2b998;p=nextcloud-desktop.git enable "Processing" log lines again but with some removed data Signed-off-by: Matthieu Gallien --- diff --git a/src/libsync/discovery.cpp b/src/libsync/discovery.cpp index 689496da4..ff9441f90 100644 --- a/src/libsync/discovery.cpp +++ b/src/libsync/discovery.cpp @@ -421,7 +421,7 @@ void ProcessDirectoryJob::processFile(PathTuple path, const char *hasLocal = localEntry.isValid() ? "true" : _queryLocal == ParentNotChanged ? "db" : "false"; const auto serverFileIsLocked = (serverEntry.isValid() ? (serverEntry.locked == SyncFileItem::LockStatus::LockedItem ? "locked" : "not locked") : ""); const auto localFileIsLocked = dbEntry._lockstate._locked ? "locked" : "not locked"; - qCDebug(lcDisco).nospace() << "Processing " << path._original + qCInfo(lcDisco).nospace() << "Processing " << path._original << " | (db/local/remote)" << " | valid: " << dbEntry.isValid() << "/" << hasLocal << "/" << hasServer << " | mtime: " << dbEntry._modtime << "/" << localEntry.modtime << "/" << serverEntry.modtime @@ -430,7 +430,6 @@ void ProcessDirectoryJob::processFile(PathTuple path, << " | checksum: " << dbEntry._checksumHeader << "//" << serverEntry.checksumHeader << " | perm: " << dbEntry._remotePerm << "//" << serverEntry.remotePerm << " | fileid: " << dbEntry._fileId << "//" << serverEntry.fileId - << " | inode: " << dbEntry._inode << "/" << localEntry.inode << "/" << " | type: " << dbEntry._type << "/" << localEntry.type << "/" << (serverEntry.isDirectory ? ItemTypeDirectory : ItemTypeFile) << " | e2ee: " << dbEntry.isE2eEncrypted() << "/" << serverEntry.isE2eEncrypted() << " | e2eeMangledName: " << dbEntry.e2eMangledName() << "/" << serverEntry.e2eMangledName