From: John Spray Date: Thu, 3 Aug 2017 17:00:56 +0000 (-0400) Subject: mgr: omit module list in beacon logging X-Git-Tag: v12.2.2~61^2~62 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=32f5f0fe515e6890e8aefad6ad8cdc2574ae8a34;p=ceph.git mgr: omit module list in beacon logging This is useful in itself, but awkward when dealing with logs generally, because it means that when you grep on the name of a module, you get mostly beacon messages rather than the log messages from the module. Signed-off-by: John Spray (cherry picked from commit 8d1277fa5c578ce0ea23a70cc58c6cf99921ee25) --- diff --git a/src/mgr/MgrStandby.cc b/src/mgr/MgrStandby.cc index 99df69c909fd..48b105a6dc39 100644 --- a/src/mgr/MgrStandby.cc +++ b/src/mgr/MgrStandby.cc @@ -158,8 +158,7 @@ void MgrStandby::send_beacon() bool available = active_mgr != nullptr && active_mgr->is_initialized(); auto addr = available ? active_mgr->get_server_addr() : entity_addr_t(); - dout(10) << "sending beacon as gid " << monc.get_global_id() - << " modules " << modules << dendl; + dout(10) << "sending beacon as gid " << monc.get_global_id() << dendl; map metadata; collect_sys_info(&metadata, g_ceph_context);