|
@@ -421,7 +421,7 @@ void ProcessDirectoryJob::processFile(PathTuple path,
|
|
|
const char *hasLocal = localEntry.isValid() ? "true" : _queryLocal == ParentNotChanged ? "db" : "false";
|
|
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 serverFileIsLocked = (serverEntry.isValid() ? (serverEntry.locked == SyncFileItem::LockStatus::LockedItem ? "locked" : "not locked") : "");
|
|
|
const auto localFileIsLocked = dbEntry._lockstate._locked ? "locked" : "not locked";
|
|
const auto localFileIsLocked = dbEntry._lockstate._locked ? "locked" : "not locked";
|
|
|
- qCInfo(lcDisco).nospace() << "Processing " << path._original
|
|
|
|
|
|
|
+ qCDebug(lcDisco).nospace() << "Processing " << path._original
|
|
|
<< " | (db/local/remote)"
|
|
<< " | (db/local/remote)"
|
|
|
<< " | valid: " << dbEntry.isValid() << "/" << hasLocal << "/" << hasServer
|
|
<< " | valid: " << dbEntry.isValid() << "/" << hasLocal << "/" << hasServer
|
|
|
<< " | mtime: " << dbEntry._modtime << "/" << localEntry.modtime << "/" << serverEntry.modtime
|
|
<< " | mtime: " << dbEntry._modtime << "/" << localEntry.modtime << "/" << serverEntry.modtime
|
|
@@ -1544,7 +1544,7 @@ void ProcessDirectoryJob::processFileFinalize(
|
|
|
item->_direction = _dirItem->_direction;
|
|
item->_direction = _dirItem->_direction;
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
- qCInfo(lcDisco) << "Discovered" << item->_file << item->_instruction << item->_direction << item->_type;
|
|
|
|
|
|
|
+ qCDebug(lcDisco) << "Discovered" << item->_file << item->_instruction << item->_direction << item->_type;
|
|
|
|
|
|
|
|
if (item->isDirectory() && item->_instruction == CSYNC_INSTRUCTION_SYNC)
|
|
if (item->isDirectory() && item->_instruction == CSYNC_INSTRUCTION_SYNC)
|
|
|
item->_instruction = CSYNC_INSTRUCTION_UPDATE_METADATA;
|
|
item->_instruction = CSYNC_INSTRUCTION_UPDATE_METADATA;
|