From 314c1530519848e18d0b4f10942e260b2fdadfa0 Mon Sep 17 00:00:00 2001 From: Xuehan Xu Date: Sat, 26 Oct 2024 17:35:32 +0800 Subject: [PATCH] crimson/osd/pg: fix wrong debug logs Signed-off-by: Xuehan Xu --- src/crimson/osd/pg.cc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/crimson/osd/pg.cc b/src/crimson/osd/pg.cc index ff79c31ce61..c8c4ad25e54 100644 --- a/src/crimson/osd/pg.cc +++ b/src/crimson/osd/pg.cc @@ -1628,7 +1628,8 @@ bool PG::should_send_op( logger().debug("{} issue_repop shipping empty opt to osd." "{}, object {} beyond std::max(last_backfill_started, " "peer_info[peer].last_backfill {})", - peer, hoid, peering_state.get_peer_info(peer).last_backfill); + __func__, peer, hoid, + peering_state.get_peer_info(peer).last_backfill); } return should_send; // TODO: should consider async recovery cases in the future which are not supported -- 2.47.3