[WINSPOOL] printers.c: Demote 3 ERR() to TRACE(), Fix 1 copypasta (#2311)

This commit is contained in:
Serge Gautherie 2020-02-06 19:10:21 +01:00 committed by GitHub
parent ecde376825
commit 06f8f80181
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -197,7 +197,7 @@ DeviceCapabilitiesW(LPCWSTR pDevice, LPCWSTR pPort, WORD fwCapability, LPWSTR pO
INT WINAPI INT WINAPI
DocumentEvent( HANDLE hPrinter, HDC hdc, int iEsc, ULONG cbIn, PVOID pvIn, ULONG cbOut, PVOID pvOut) DocumentEvent( HANDLE hPrinter, HDC hdc, int iEsc, ULONG cbIn, PVOID pvIn, ULONG cbOut, PVOID pvOut)
{ {
ERR("DocumentEvent(%p, %p, %lu, %lu, %p, %lu, %p)\n", hPrinter, hdc, iEsc, cbIn, pvIn, cbOut, pvOut); TRACE("DocumentEvent(%p, %p, %lu, %lu, %p, %lu, %p)\n", hPrinter, hdc, iEsc, cbIn, pvIn, cbOut, pvOut);
UNIMPLEMENTED; UNIMPLEMENTED;
return DOCUMENTEVENT_UNSUPPORTED; return DOCUMENTEVENT_UNSUPPORTED;
} }
@ -1529,7 +1529,7 @@ GetPrinterDriverW(HANDLE hPrinter, LPWSTR pEnvironment, DWORD Level, LPBYTE pDri
RpcExcept(EXCEPTION_EXECUTE_HANDLER) RpcExcept(EXCEPTION_EXECUTE_HANDLER)
{ {
dwErrorCode = RpcExceptionCode(); dwErrorCode = RpcExceptionCode();
ERR("_RpcGetPrinter failed with exception code %lu!\n", dwErrorCode); ERR("_RpcGetPrinterDriver failed with exception code %lu!\n", dwErrorCode);
} }
RpcEndExcept; RpcEndExcept;
@ -1935,7 +1935,7 @@ SetPrinterW(HANDLE hPrinter, DWORD Level, PBYTE pPrinter, DWORD Command)
BOOL WINAPI BOOL WINAPI
SplDriverUnloadComplete(LPWSTR pDriverFile) SplDriverUnloadComplete(LPWSTR pDriverFile)
{ {
ERR("DriverUnloadComplete(%S)\n", pDriverFile); TRACE("DriverUnloadComplete(%S)\n", pDriverFile);
UNIMPLEMENTED; UNIMPLEMENTED;
return TRUE; // return true for now. return TRUE; // return true for now.
} }