1
0
mirror of https://github.com/samba-team/samba.git synced 2025-07-30 19:42:05 +03:00

messages: bump debug level to 1 for "messaging_ctdb_init failed".

Leave level 0 messages to higher level callers.

Michael
(This used to be commit 7bbf29137b)
This commit is contained in:
Michael Adam
2008-06-24 15:08:21 +02:00
parent 7ec1678d60
commit 0412c20386

View File

@ -211,7 +211,7 @@ struct messaging_context *messaging_init(TALLOC_CTX *mem_ctx,
status = messaging_ctdbd_init(ctx, ctx, &ctx->remote);
if (!NT_STATUS_IS_OK(status)) {
DEBUG(0, ("messaging_ctdb_init failed: %s\n",
DEBUG(1, ("messaging_ctdb_init failed: %s\n",
nt_errstr(status)));
TALLOC_FREE(ctx);
return NULL;
@ -246,7 +246,7 @@ NTSTATUS messaging_reinit(struct messaging_context *msg_ctx)
&msg_ctx->remote);
if (!NT_STATUS_IS_OK(status)) {
DEBUG(0, ("messaging_ctdb_init failed: %s\n",
DEBUG(1, ("messaging_ctdb_init failed: %s\n",
nt_errstr(status)));
return status;
}