From e7f84503c059b99541cb892cd143c87ed8626d69 Mon Sep 17 00:00:00 2001 From: Andrew Tridgell Date: Sat, 2 Jul 2005 05:18:33 +0000 Subject: r8068: reduced the verbosity of the EPM code (This used to be commit 4c5974fc3dabd090284b2ed455a0af114ddbec1d) --- source4/librpc/rpc/dcerpc_util.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'source4/librpc') diff --git a/source4/librpc/rpc/dcerpc_util.c b/source4/librpc/rpc/dcerpc_util.c index d4a0ad2874..49b7c32a8a 100644 --- a/source4/librpc/rpc/dcerpc_util.c +++ b/source4/librpc/rpc/dcerpc_util.c @@ -1016,7 +1016,7 @@ static NTSTATUS dcerpc_pipe_connect_ncacn_np(TALLOC_CTX *tmp_ctx, pipe_uuid, nt_errstr(status))); return status; } - DEBUG(1,("Mapped to DCERPC/NP pipe %s\n", binding->endpoint)); + DEBUG(2,("Mapped to DCERPC/NP pipe %s\n", binding->endpoint)); } pipe_name = binding->endpoint; @@ -1050,7 +1050,7 @@ static NTSTATUS dcerpc_pipe_connect_ncalrpc(TALLOC_CTX *tmp_ctx, pipe_uuid, nt_errstr(status))); return status; } - DEBUG(1,("Mapped to DCERPC/LRPC identifier %s\n", binding->endpoint)); + DEBUG(2,("Mapped to DCERPC/LRPC identifier %s\n", binding->endpoint)); } status = dcerpc_pipe_open_pipe(p->conn, binding->endpoint); @@ -1111,7 +1111,7 @@ static NTSTATUS dcerpc_pipe_connect_ncacn_ip_tcp(TALLOC_CTX *tmp_ctx, pipe_uuid, nt_errstr(status))); return status; } - DEBUG(1,("Mapped to DCERPC/TCP port %s\n", binding->endpoint)); + DEBUG(2,("Mapped to DCERPC/TCP port %s\n", binding->endpoint)); } port = atoi(binding->endpoint); -- cgit