From b2be8f2267a2fdee2d9fce6a100225eea8e7928b Mon Sep 17 00:00:00 2001 From: Andreas Schneider Date: Thu, 29 Jul 2010 20:45:07 +0200 Subject: s3-spoolss: Fixed debug statements and increased level. --- source3/rpc_server/srv_spoolss_util.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'source3/rpc_server/srv_spoolss_util.c') diff --git a/source3/rpc_server/srv_spoolss_util.c b/source3/rpc_server/srv_spoolss_util.c index 768171a277..138f4f7576 100644 --- a/source3/rpc_server/srv_spoolss_util.c +++ b/source3/rpc_server/srv_spoolss_util.c @@ -904,7 +904,7 @@ static WERROR winreg_printer_query_binary(TALLOC_CTX *mem_ctx, &value_len, &result); if (!NT_STATUS_IS_OK(status)) { - DEBUG(0, ("winreg_printer_query_dword: Could not query value %s: %s\n", + DEBUG(2, ("winreg_printer_query_binary: Could not query value %s: %s\n", wvalue.name, nt_errstr(status))); if (!W_ERROR_IS_OK(result)) { goto done; @@ -934,7 +934,7 @@ static WERROR winreg_printer_query_binary(TALLOC_CTX *mem_ctx, &value_len, &result); if (!NT_STATUS_IS_OK(status)) { - DEBUG(0, ("winreg_printer_query_dword: Could not query value %s: %s\n", + DEBUG(2, ("winreg_printer_query_binary: Could not query value %s: %s\n", wvalue.name, nt_errstr(status))); if (!W_ERROR_IS_OK(result)) { result = ntstatus_to_werror(status); @@ -975,7 +975,7 @@ static WERROR winreg_printer_query_dword(TALLOC_CTX *mem_ctx, &value_len, &result); if (!NT_STATUS_IS_OK(status)) { - DEBUG(0, ("winreg_printer_query_dword: Could not query value %s: %s\n", + DEBUG(2, ("winreg_printer_query_dword: Could not query value %s: %s\n", wvalue.name, nt_errstr(status))); if (!W_ERROR_IS_OK(result)) { goto done; @@ -1011,7 +1011,7 @@ static WERROR winreg_printer_query_dword(TALLOC_CTX *mem_ctx, &value_len, &result); if (!NT_STATUS_IS_OK(status)) { - DEBUG(0, ("winreg_printer_query_dword: Could not query value %s: %s\n", + DEBUG(2, ("winreg_printer_query_dword: Could not query value %s: %s\n", wvalue.name, nt_errstr(status))); if (!W_ERROR_IS_OK(result)) { result = ntstatus_to_werror(status); -- cgit