[SETUPAPI] Demote some noisy dprints

This commit is contained in:
Mark Jansen 2019-08-20 14:19:29 +02:00
parent 029b8f2cf9
commit 4872912eb2
No known key found for this signature in database
GPG key ID: B39240EE84BEAE8B

View file

@ -1085,7 +1085,7 @@ static BOOL do_file_copyW( LPCWSTR source, LPCWSTR target, DWORD style,
hSource = LZOpenFileW((LPWSTR)source, &OfStruct, OF_READ); hSource = LZOpenFileW((LPWSTR)source, &OfStruct, OF_READ);
if (hSource < 0) 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; return FALSE;
} }
@ -1822,7 +1822,7 @@ UINT WINAPI SetupDefaultQueueCallbackW( PVOID context, UINT notification,
TRACE( "end copy %s -> %s\n", debugstr_w(paths->Source), debugstr_w(paths->Target) ); TRACE( "end copy %s -> %s\n", debugstr_w(paths->Source), debugstr_w(paths->Target) );
return 0; return 0;
case SPFILENOTIFY_COPYERROR: 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) ); debugstr_w(paths->Source), debugstr_w(paths->Target) );
return FILEOP_SKIP; return FILEOP_SKIP;
case SPFILENOTIFY_NEEDMEDIA: case SPFILENOTIFY_NEEDMEDIA: