From c22e49f3216c44bc26e029b05602a4b06e92c49d Mon Sep 17 00:00:00 2001 From: Jason Dillaman Date: Fri, 27 Oct 2017 16:02:47 -0400 Subject: [PATCH] rbd-mirror: journal debug message should not be logged as error Signed-off-by: Jason Dillaman (cherry picked from commit 625222edbce66c98b86fc87fa3bd12ea40db17a2) --- src/tools/rbd_mirror/ImageReplayer.cc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/tools/rbd_mirror/ImageReplayer.cc b/src/tools/rbd_mirror/ImageReplayer.cc index ddf3b5a3cea71..fd3bf7a90f136 100644 --- a/src/tools/rbd_mirror/ImageReplayer.cc +++ b/src/tools/rbd_mirror/ImageReplayer.cc @@ -620,9 +620,9 @@ void ImageReplayer::handle_init_remote_journaler(int r) { return; } - derr << "image_id=" << m_local_image_id << ", " - << "m_client_meta.image_id=" << m_client_meta.image_id << ", " - << "client.state=" << client.state << dendl; + dout(5) << "image_id=" << m_local_image_id << ", " + << "client_meta.image_id=" << m_client_meta.image_id << ", " + << "client.state=" << client.state << dendl; if (m_client_meta.image_id == m_local_image_id && client.state != cls::journal::CLIENT_STATE_CONNECTED) { dout(5) << "client flagged disconnected, stopping image replay" << dendl; -- 2.39.5