msgr already logs them
Signed-off-by: Kefu Chai <kchai@redhat.com>
seastar::future<>
Client::ms_dispatch(ceph::net::ConnectionRef conn, MessageRef m)
{
- logger().info("ms_dispatch {}", *m);
// we only care about these message types
switch (m->get_type()) {
case CEPH_MSG_MON_MAP:
seastar::future<> Heartbeat::ms_dispatch(ceph::net::ConnectionRef conn,
MessageRef m)
{
- logger().info("heartbeat: ms_dispatch {} from {}",
- *m, m->get_source());
switch (m->get_type()) {
case MSG_OSD_PING:
return handle_osd_ping(conn, boost::static_pointer_cast<MOSDPing>(m));
seastar::future<> OSD::ms_dispatch(ceph::net::ConnectionRef conn, MessageRef m)
{
- logger().info("ms_dispatch {}", *m);
if (state.is_stopping()) {
return seastar::now();
}