From e2e27c89fbfc5204526194db3bb3b9f76260400c Mon Sep 17 00:00:00 2001 From: Joachim Henze Date: Mon, 21 Dec 2020 02:21:35 +0100 Subject: [PATCH] [0.4.10][SETUPAPI] Demote some noisy dprints picked from 0.4.13-dev-987-g 4872912eb26b7f4a5567dddface4aa96d7ee658a --- dll/win32/setupapi/queue.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dll/win32/setupapi/queue.c b/dll/win32/setupapi/queue.c index e5919bba5c5..dc43e363ea2 100644 --- a/dll/win32/setupapi/queue.c +++ b/dll/win32/setupapi/queue.c @@ -1084,7 +1084,7 @@ static BOOL do_file_copyW( LPCWSTR source, LPCWSTR target, DWORD style, hSource = LZOpenFileW((LPWSTR)source, &OfStruct, OF_READ); if (hSource < 0) { - ERR("LZOpenFileW(1) error %d %s\n", (int)hSource, debugstr_w(source)); + TRACE("LZOpenFileW(1) error %d %s\n", (int)hSource, debugstr_w(source)); return FALSE; } @@ -1806,7 +1806,7 @@ UINT WINAPI SetupDefaultQueueCallbackW( PVOID context, UINT notification, TRACE( "end copy %s -> %s\n", debugstr_w(paths->Source), debugstr_w(paths->Target) ); return 0; case SPFILENOTIFY_COPYERROR: - ERR( "copy error %d %s -> %s\n", paths->Win32Error, + TRACE( "copy error %d %s -> %s\n", paths->Win32Error, debugstr_w(paths->Source), debugstr_w(paths->Target) ); return FILEOP_SKIP; case SPFILENOTIFY_NEEDMEDIA: