diff options
author | Xiubo Li <xiubli@redhat.com> | 2024-05-16 02:52:45 +0200 |
---|---|---|
committer | Xiubo Li <xiubli@redhat.com> | 2024-06-07 04:03:47 +0200 |
commit | c5a61107b3f297e8a4e1798126a1eaee2f3e39a6 (patch) | |
tree | 4521de0f9c532a586139731aa4368b3d6dc7a8ff /src/mds/Server.cc | |
parent | Merge pull request #56874 from smanjara/wip-shilpa-multisite-tests (diff) | |
download | ceph-c5a61107b3f297e8a4e1798126a1eaee2f3e39a6.tar.xz ceph-c5a61107b3f297e8a4e1798126a1eaee2f3e39a6.zip |
mds: cleanup the debug logs to make it to be more readable
URL: https://tracker.ceph.com/issues/65647
Signed-off-by: Xiubo Li <xiubli@redhat.com>
Diffstat (limited to 'src/mds/Server.cc')
-rw-r--r-- | src/mds/Server.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mds/Server.cc b/src/mds/Server.cc index e41342bf2b7..6cafa02332c 100644 --- a/src/mds/Server.cc +++ b/src/mds/Server.cc @@ -1532,7 +1532,7 @@ void Server::handle_client_reconnect(const cref_t<MClientReconnect> &m) } if (!session->is_open()) { - dout(0) << " ignoring msg from not-open session" << *m << dendl; + dout(0) << " ignoring msg from not-open session " << *m << dendl; auto reply = make_message<MClientSession>(CEPH_SESSION_CLOSE); mds->send_message(reply, m->get_connection()); return; |