From: John Spray Date: Wed, 8 Nov 2017 16:53:45 +0000 (-0500) Subject: mon: monmap log on active should be debug X-Git-Tag: v12.2.3~111^2~1 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=6875bdaf5fcc000c4a4615e3f6a03a530bdd74da;p=ceph.git mon: monmap log on active should be debug This isn't even a change to the map, just something that got echoed every time a new mon was the leader. Signed-off-by: John Spray (cherry picked from commit c9eb2793e6074521d161632e20954295527d3653) --- diff --git a/src/mon/MonmapMonitor.cc b/src/mon/MonmapMonitor.cc index 7a0fb684de7e..8abcf81312e9 100644 --- a/src/mon/MonmapMonitor.cc +++ b/src/mon/MonmapMonitor.cc @@ -188,8 +188,9 @@ void MonmapMonitor::on_active() mon->has_ever_joined = true; } - if (mon->is_leader()) - mon->clog->info() << "monmap " << *mon->monmap; + if (mon->is_leader()) { + mon->clog->debug() << "monmap " << *mon->monmap; + } apply_mon_features(mon->get_quorum_mon_features()); }