[SHELL32] Demote noisy ERR() to TRACE() in CRecyclerDropTarget (#3093)

This commit is contained in:
Kyle Katarn 2020-08-25 18:12:17 +02:00 committed by GitHub
parent 0ab63f9590
commit aab8cd81ff
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View 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)
{