]> git.apps.os.sepia.ceph.com Git - ceph.git/commitdiff
mon: monmap log on active should be debug
authorJohn Spray <john.spray@redhat.com>
Wed, 8 Nov 2017 16:53:45 +0000 (11:53 -0500)
committerJohn Spray <john.spray@redhat.com>
Wed, 8 Nov 2017 17:03:25 +0000 (17:03 +0000)
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 <john.spray@redhat.com>
src/mon/MonmapMonitor.cc

index f49edccab1bbbb7532d17fb3a4a79673679876b1..fae36d6177f27f871b50aa3debcb7d17782b553d 100644 (file)
@@ -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());
 }