From a8a0dd4241d3717b9b7273ac44de08c24835eeef Mon Sep 17 00:00:00 2001 From: Michael Adam Date: Tue, 24 Jun 2008 15:09:37 +0200 Subject: ctdbd_connect: bump debug level to 1 for "connect failed" message. Leave level 0 message for higher level callers. Michael (This used to be commit fee770e5d080b0513418e61e469f2824a1d771ec) --- source3/lib/ctdbd_conn.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source3/lib/ctdbd_conn.c') diff --git a/source3/lib/ctdbd_conn.c b/source3/lib/ctdbd_conn.c index 46936c5f39..e8d3fd1159 100644 --- a/source3/lib/ctdbd_conn.c +++ b/source3/lib/ctdbd_conn.c @@ -136,7 +136,7 @@ static NTSTATUS ctdbd_connect(TALLOC_CTX *mem_ctx, strncpy(addr.sun_path, sockname, sizeof(addr.sun_path)); if (sys_connect(fd, (struct sockaddr *)&addr) == -1) { - DEBUG(0, ("connect(%s) failed: %s\n", sockname, + DEBUG(1, ("connect(%s) failed: %s\n", sockname, strerror(errno))); close(fd); return map_nt_error_from_unix(errno); -- cgit