summaryrefslogtreecommitdiffstats
path: root/ctdb/server/ctdb_daemon.c
diff options
context:
space:
mode:
authorRonnie Sahlberg <sahlberg@ronnie>2007-08-21 08:42:42 +1000
committerRonnie Sahlberg <sahlberg@ronnie>2007-08-21 08:42:42 +1000
commitaed2c58c641e4fb6ebb28a16062c75974b7d2d1c (patch)
treee7ceabaf51af05d7d36f4b485c8e31bb2276fcd6 /ctdb/server/ctdb_daemon.c
parent7e1f840c8d50ded286b3e300d7660f3cb96124cb (diff)
downloadsamba-aed2c58c641e4fb6ebb28a16062c75974b7d2d1c.tar.gz
samba-aed2c58c641e4fb6ebb28a16062c75974b7d2d1c.tar.xz
samba-aed2c58c641e4fb6ebb28a16062c75974b7d2d1c.zip
dont pollute the log with 'Registered PID XXX for client YYY' at log
level 0. change the log level to 3 for this information message (This used to be ctdb commit f28d713d9cacd2312932b51175aa8402c96ef76b)
Diffstat (limited to 'ctdb/server/ctdb_daemon.c')
-rw-r--r--ctdb/server/ctdb_daemon.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ctdb/server/ctdb_daemon.c b/ctdb/server/ctdb_daemon.c
index edb33b77fc0..78c67b3ccc7 100644
--- a/ctdb/server/ctdb_daemon.c
+++ b/ctdb/server/ctdb_daemon.c
@@ -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(0,(__location__ " Registered PID %u for client %u\n",
+ DEBUG(3,(__location__ " Registered PID %u for client %u\n",
(unsigned)client->pid, client_id));
}
return res;