From: Matthieu Gallien Date: Tue, 24 Jan 2023 21:23:24 +0000 (+0100) Subject: remove some not needed debug logs X-Git-Tag: archive/raspbian/3.16.7-1_deb13u1+rpi1~1^2~12^2~11^2~27^2~5 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=7091b7f8890333ccb011e78f2cc3dd879d3581fc;p=nextcloud-desktop.git remove some not needed debug logs Signed-off-by: Matthieu Gallien --- diff --git a/src/libsync/caseclashconflictsolver.cpp b/src/libsync/caseclashconflictsolver.cpp index 00150b502..ee5d94014 100644 --- a/src/libsync/caseclashconflictsolver.cpp +++ b/src/libsync/caseclashconflictsolver.cpp @@ -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; } }