remove some not needed debug logs
authorMatthieu Gallien <matthieu.gallien@nextcloud.com>
Tue, 24 Jan 2023 21:23:24 +0000 (22:23 +0100)
committerMatthieu Gallien <matthieu.gallien@nextcloud.com>
Wed, 25 Jan 2023 15:37:36 +0000 (16:37 +0100)
Signed-off-by: Matthieu Gallien <matthieu.gallien@nextcloud.com>
src/libsync/caseclashconflictsolver.cpp

index 00150b502c36f2c451f88588f7a94573e70cafbc..ee5d94014090a4f0077024a197f4dae2a9e79e6c 100644 (file)
@@ -135,11 +135,9 @@ QString CaseClashConflictSolver::remoteTargetFilePath() const
 {
     if (_remotePath == QStringLiteral("/")) {
         const auto result = QString{_targetFilePath.mid(_localPath.length())};
-        qCDebug(lcCaseClashConflictSolver) << result << _remotePath << _targetFilePath << _localPath;
         return result;
     } else {
         const auto result = QString{_remotePath + _targetFilePath.mid(_localPath.length())};
-        qCDebug(lcCaseClashConflictSolver) << result << _remotePath << _targetFilePath << _localPath;
         return result;
     }
 }