diff options
author | Joao Eduardo Luis <jecluis@gmail.com> | 2013-08-22 16:44:41 +0100 |
---|---|---|
committer | Joao Eduardo Luis <jecluis@gmail.com> | 2013-08-22 16:46:50 +0100 |
commit | 55fa2e862e885161381c0023d9c16b4fdf9bd5a3 (patch) | |
tree | f9075725184ae8cb73afea377af28340b6e0faa3 | |
parent | 5a5a576e866c0c73ec25f83fb2734b021d4b832b (diff) | |
download | ceph-55fa2e862e885161381c0023d9c16b4fdf9bd5a3.tar.gz |
mon: Monitor: remove lingering debug message from f087d84b
Signed-off-by: Joao Eduardo Luis <jecluis@gmail.com>
-rw-r--r-- | src/mon/Monitor.cc | 1 |
1 files changed, 0 insertions, 1 deletions
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; |