]> git.apps.os.sepia.ceph.com Git - ceph.git/commitdiff
mgr: drop useless __func__ prints
authorSage Weil <sage@redhat.com>
Mon, 22 May 2017 22:47:40 +0000 (18:47 -0400)
committerSage Weil <sage@redhat.com>
Fri, 2 Jun 2017 17:02:53 +0000 (13:02 -0400)
This is part of the default prefix.

Signed-off-by: Sage Weil <sage@redhat.com>
src/mgr/Mgr.cc
src/mon/MgrStatMonitor.cc

index cbc443f3a32968ca705510ebfc71c8315950377b..dc4daed1b59c840dc2f5a7380f5abbaafb74f0eb 100644 (file)
@@ -585,6 +585,6 @@ void Mgr::handle_mgr_digest(MMgrDigest* m)
 
 void Mgr::tick()
 {
-  dout(0) << __func__ << dendl;
+  dout(0) << dendl;
   server.send_report();
 }
index 5392210f35951f6f863dfff48532f3b4ab7ef71e..b6ffe8695e638810071c9ce5a0d5bc6d98c2b479 100644 (file)
@@ -78,14 +78,14 @@ PGStatService *MgrStatMonitor::get_pg_stat_service()
 
 void MgrStatMonitor::create_initial()
 {
-  dout(10) << __func__ << dendl;
+  dout(10) << dendl;
   version = 0;
 }
 
 void MgrStatMonitor::update_from_paxos(bool *need_bootstrap)
 {
   version = get_last_committed();
-  dout(10) << __func__ << " " << version << dendl;
+  dout(10) << " " << version << dendl;
   bufferlist bl;
   get_version(version, bl);
   if (version) {
@@ -102,7 +102,7 @@ void MgrStatMonitor::update_from_paxos(bool *need_bootstrap)
 
 void MgrStatMonitor::create_pending()
 {
-  dout(10) << __func__ << " " << version << dendl;
+  dout(10) << " " << version << dendl;
   pending_digest = digest;
   pending_health_summary = health_summary;
   pending_health_detail = health_detail;
@@ -111,7 +111,7 @@ void MgrStatMonitor::create_pending()
 void MgrStatMonitor::encode_pending(MonitorDBStore::TransactionRef t)
 {
   ++version;
-  dout(10) << __func__ << " " << version << dendl;
+  dout(10) << " " << version << dendl;
   bufferlist digestbl, bl;
   ::encode(pending_digest, digestbl, mon->get_quorum_con_features());
   ::encode(digestbl, bl);