1
0
mirror of https://github.com/samba-team/samba.git synced 2025-02-28 01:58:17 +03:00

ctdbd_conn: lower the debug level 0 for failing connection to ctdbd.

If e.g. samba fails to start because it can not open the
connection to ctdbd, we want to see some indication in the
logs about this.

Signed-off-by: Michael Adam <obnox@samba.org>
Reviewed-by: Guenther Deschner <gd@samba.org>
Reviewed-by: Volker Lendecke <vl@samba.org>
This commit is contained in:
Michael Adam 2015-06-26 13:14:39 +02:00 committed by Günther Deschner
parent bbb18875dc
commit 3320a565fb

View File

@ -459,7 +459,7 @@ static NTSTATUS ctdbd_init_connection(TALLOC_CTX *mem_ctx,
ret = ctdbd_connect(&conn->fd);
if (ret != 0) {
status = map_nt_error_from_unix(errno);
DEBUG(10, ("ctdbd_connect failed: %s\n", strerror(errno)));
DEBUG(1, ("ctdbd_connect failed: %s\n", strerror(errno)));
goto fail;
}
talloc_set_destructor(conn, ctdbd_connection_destructor);