From 3057c40dbe32dae502258ca9103dc61a765d85c1 Mon Sep 17 00:00:00 2001 From: Günther Deschner Date: Thu, 27 Mar 2008 16:44:37 +0100 Subject: Ndr pull and push errors are worth to be logged with 1 at least. Guenther (This used to be commit 3426f13f3bbcb5cae3f2e6aac9e2d04174e5bdc0) --- source3/librpc/ndr/ndr.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'source3/librpc/ndr') diff --git a/source3/librpc/ndr/ndr.c b/source3/librpc/ndr/ndr.c index 53eff00d59..d94d12e146 100644 --- a/source3/librpc/ndr/ndr.c +++ b/source3/librpc/ndr/ndr.c @@ -464,7 +464,7 @@ _PUBLIC_ enum ndr_err_code ndr_pull_error(struct ndr_pull *ndr, return NDR_ERR_ALLOC; } - DEBUG(3,("ndr_pull_error(%u): %s\n", ndr_err, s)); + DEBUG(1,("ndr_pull_error(%u): %s\n", ndr_err, s)); free(s); @@ -490,7 +490,7 @@ _PUBLIC_ enum ndr_err_code ndr_push_error(struct ndr_push *ndr, return NDR_ERR_ALLOC; } - DEBUG(3,("ndr_push_error(%u): %s\n", ndr_err, s)); + DEBUG(1,("ndr_push_error(%u): %s\n", ndr_err, s)); free(s); -- cgit