remove some not needed debug logs

Signed-off-by: Matthieu Gallien <matthieu.gallien@nextcloud.com>
This commit is contained in:
Matthieu Gallien 2023-01-24 22:23:24 +01:00
parent 8dee66f84e
commit 7091b7f889
No known key found for this signature in database
GPG key ID: 7D0F74F05C22F553

View 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;
}
}