From: Joao Eduardo Luis Date: Thu, 22 Aug 2013 15:44:41 +0000 (+0100) Subject: mon: Monitor: remove lingering debug message from f087d84b X-Git-Tag: v0.69~77^2 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=55fa2e862e885161381c0023d9c16b4fdf9bd5a3;p=ceph.git mon: Monitor: remove lingering debug message from f087d84b Signed-off-by: Joao Eduardo Luis --- diff --git a/src/mon/Monitor.cc b/src/mon/Monitor.cc index 61e2a2aa57a..45ca02027fc 100644 --- a/src/mon/Monitor.cc +++ b/src/mon/Monitor.cc @@ -1878,7 +1878,6 @@ bool Monitor::_allowed_command(MonSession *s, string &module, string &prefix, MonCommand *this_cmd = NULL; for (MonCommand *cp = mon_commands; cp < &mon_commands[ARRAY_SIZE(mon_commands)]; cp++) { - dout(0) << __func__ << " CAPSBAR >> matching against " << cp->cmdstring << dendl; if (cp->cmdstring.find(prefix) != string::npos) { this_cmd = cp; break;