From f783ecfbfd8c873d97644b8b6b0d95e3f878b992 Mon Sep 17 00:00:00 2001 From: Anand Avati Date: Tue, 7 Dec 2010 00:02:10 +0000 Subject: rpc-clnt: show disconnect messages in log file by default Signed-off-by: Anand V. Avati Signed-off-by: Anand V. Avati BUG: 875 (Implement a new protocol to provide proper backward/forward compatibility) URL: http://bugs.gluster.com/cgi-bin/bugzilla3/show_bug.cgi?id=875 --- xlators/protocol/client/src/client.c | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) (limited to 'xlators/protocol/client/src/client.c') diff --git a/xlators/protocol/client/src/client.c b/xlators/protocol/client/src/client.c index 198ba082add..e83badca98a 100644 --- a/xlators/protocol/client/src/client.c +++ b/xlators/protocol/client/src/client.c @@ -1583,10 +1583,13 @@ client_rpc_notify (struct rpc_clnt *rpc, void *mydata, rpc_clnt_event_t event, client_mark_fd_bad (this); - gf_log (this->name, GF_LOG_TRACE, "got RPC_CLNT_DISCONNECT"); - - if (!conf->skip_notify) + if (!conf->skip_notify) { + gf_log (this->name, GF_LOG_NORMAL, "disconnected"); default_notify (this, GF_EVENT_CHILD_DOWN, NULL); + } else { + gf_log (this->name, GF_LOG_TRACE, "disconnected (skipped notify)"); + } + conf->skip_notify = 0; break; -- cgit