]> git.apps.os.sepia.ceph.com Git - ceph.git/commitdiff
crimson/osd: use correct fmt string in logger().debug(...) 38501/head
authorKefu Chai <kchai@redhat.com>
Thu, 10 Dec 2020 07:17:56 +0000 (15:17 +0800)
committerKefu Chai <kchai@redhat.com>
Thu, 10 Dec 2020 10:26:39 +0000 (18:26 +0800)
Signed-off-by: Kefu Chai <kchai@redhat.com>
src/crimson/osd/recovery_backend.cc

index 91e4cc334c7f2b570ef494c123a06f8e48e894c7..9a07342f5db7d50e901e0ba9403ce1241412c400 100644 (file)
@@ -139,7 +139,7 @@ seastar::future<> RecoveryBackend::handle_backfill(
 seastar::future<> RecoveryBackend::handle_backfill_remove(
   MOSDPGBackfillRemove& m)
 {
-  logger().debug("{} m.ls=", __func__, m.ls);
+  logger().debug("{} m.ls={}", __func__, m.ls);
   assert(m.get_type() == MSG_OSD_PG_BACKFILL_REMOVE);
 
   ObjectStore::Transaction t;