diff --git a/dll/win32/newdev/newdev.c b/dll/win32/newdev/newdev.c index 960f75212d..274354ee3e 100644 --- a/dll/win32/newdev/newdev.c +++ b/dll/win32/newdev/newdev.c @@ -523,7 +523,7 @@ InstallCurrentDriver( { BOOL ret; - TRACE("Installing driver %s: %s\n", + ERR("Installing driver %s: %s\n", debugstr_w(DevInstData->drvInfoData.MfgName), debugstr_w(DevInstData->drvInfoData.Description)); @@ -645,7 +645,7 @@ DevInstallW( DWORD config_flags; BOOL retval = FALSE; - TRACE("(%p, %p, %s, %d)\n", hWndParent, hInstance, debugstr_w(InstanceId), Show); + ERR("(%p, %p, %s, %d)\n", hWndParent, hInstance, debugstr_w(InstanceId), Show); if (!IsUserAdmin()) { @@ -741,7 +741,7 @@ DevInstallW( } } - TRACE("Installing %s (%s)\n", debugstr_w((PCWSTR)DevInstData->buffer), debugstr_w(InstanceId)); + ERR("Installing %s (%s)\n", debugstr_w((PCWSTR)DevInstData->buffer), debugstr_w(InstanceId)); /* Search driver in default location and removable devices */ if (!PrepareFoldersToScan(DevInstData, FALSE, FALSE, NULL)) @@ -753,7 +753,7 @@ DevInstallW( { /* Driver found ; install it */ retval = InstallCurrentDriver(DevInstData); - TRACE("InstallCurrentDriver() returned %d\n", retval); + ERR("InstallCurrentDriver() returned %d\n", retval); if (retval && Show != SW_HIDE) { /* Should we display the 'Need to reboot' page? */