[SHELL32] Demote noisy ERR() to TRACE() in CRecyclerDropTarget (#3093)
authorKyle Katarn <contact@kcsoftwares.com>
Tue, 25 Aug 2020 16:12:17 +0000 (18:12 +0200)
committerGitHub <noreply@github.com>
Tue, 25 Aug 2020 16:12:17 +0000 (19:12 +0300)
dll/win32/shell32/droptargets/CRecyclerDropTarget.cpp

index 77bcef9..fa2b5ff 100644 (file)
@@ -56,7 +56,7 @@ class CRecyclerDropTarget :
             FileOp.pFrom = (LPWSTR) (((byte*) lpdf) + lpdf->pFiles);;
             if ((fMask & CMIC_MASK_SHIFT_DOWN) == 0)
                 FileOp.fFlags = FOF_ALLOWUNDO;
-            ERR("Deleting file (just the first) = %s, allowundo: %d\n", debugstr_w(FileOp.pFrom), (FileOp.fFlags == FOF_ALLOWUNDO));
+            TRACE("Deleting file (just the first) = %s, allowundo: %d\n", debugstr_w(FileOp.pFrom), (FileOp.fFlags == FOF_ALLOWUNDO));
 
             if (SHFileOperationW(&FileOp) != 0)
             {