From: Andrew Tridgell Date: Wed, 12 Sep 2007 03:21:19 +0000 (+1000) Subject: changed some debug levels X-Git-Tag: tevent-0.9.20~348^2~2423 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=a478c78f032e551102faeeac12f62c1d31466a09;p=thirdparty%2Fsamba.git changed some debug levels (This used to be ctdb commit ed764533e1c2f8982e1577ca5e7f5f4482a15345) --- diff --git a/ctdb/server/ctdb_daemon.c b/ctdb/server/ctdb_daemon.c index ce355a5d377..22b13455e82 100644 --- a/ctdb/server/ctdb_daemon.c +++ b/ctdb/server/ctdb_daemon.c @@ -210,7 +210,7 @@ int daemon_register_message_handler(struct ctdb_context *ctdb, uint32_t client_i DEBUG(0,(__location__ " Failed to register handler %llu in daemon\n", (unsigned long long)srvid)); } else { - DEBUG(2,(__location__ " Registered message handler for srvid=%llu\n", + DEBUG(1,(__location__ " Registered message handler for srvid=%llu\n", (unsigned long long)srvid)); } @@ -218,7 +218,7 @@ int daemon_register_message_handler(struct ctdb_context *ctdb, uint32_t client_i if ((srvid & 0xFFFFFFFF) == srvid && kill(srvid, 0) == 0) { client->pid = srvid; - DEBUG(3,(__location__ " Registered PID %u for client %u\n", + DEBUG(1,(__location__ " Registered PID %u for client %u\n", (unsigned)client->pid, client_id)); } return res;