Skip to content

Commit 22e7a5c

Browse files
committed
fix(logs): reduce verbosity when deleting a folder content
Signed-off-by: Matthieu Gallien <[email protected]>
1 parent 276436c commit 22e7a5c

File tree

2 files changed

+0
-2
lines changed

2 files changed

+0
-2
lines changed

src/libsync/filesystem.cpp

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -287,7 +287,6 @@ bool FileSystem::removeRecursively(const QString &path,
287287
} else {
288288
removeOk = FileSystem::remove(di.filePath(), &removeError);
289289
}
290-
qCInfo(lcFileSystem()) << "delete" << di.filePath();
291290
if (removeOk) {
292291
if (onDeleted)
293292
onDeleted(di.filePath(), false);

src/libsync/propagatorjobs.cpp

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,6 @@ bool PropagateLocalRemove::removeRecursively(const QString &path)
6363
[this] (const QString &itemPath, QString *removeError) -> bool {
6464
auto result = false;
6565

66-
qCInfo(lcPropagateLocalRemove()) << itemPath << _deleteToClientTrashBin;
6766
if (_deleteToClientTrashBin.contains(itemPath)) {
6867
result = FileSystem::moveToTrash(itemPath, removeError);
6968
if (!result) {

0 commit comments

Comments
 (0)