From 6b4691123560eafc29b55c93798c263f772afd17 Mon Sep 17 00:00:00 2001 From: Luke Leighton Date: Tue, 14 Mar 2000 21:11:06 +0000 Subject: finally decided to increase debug log level for "socket connect failed" message from level 0 to level 1. --- source/lib/util_sock.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/lib/util_sock.c b/source/lib/util_sock.c index 5a77a003485..681efa0277d 100644 --- a/source/lib/util_sock.c +++ b/source/lib/util_sock.c @@ -923,7 +923,7 @@ int open_pipe_sock(char *path) if (connect(sock, (struct sockaddr*) &sa, sizeof(sa)) < 0) { - DEBUG(0,("socket connect to %s failed: %s\n", + DEBUG(1,("socket connect to %s failed: %s\n", sa.sun_path,strerror(errno))); close(sock); return -1; -- cgit