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: v13.0.1~243^2~1 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=c9eb2793e6074521d161632e20954295527d3653;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 --- diff --git a/src/mon/MonmapMonitor.cc b/src/mon/MonmapMonitor.cc index f49edccab1bb..fae36d6177f2 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()); }