]> git.apps.os.sepia.ceph.com Git - ceph.git/commitdiff
crimson/common: fix method name in interrupt_cond_t::reset()'s debugs
authorRadoslaw Zarzynski <rzarzyns@redhat.com>
Mon, 5 Dec 2022 19:46:36 +0000 (19:46 +0000)
committerRadoslaw Zarzynski <rzarzyns@redhat.com>
Tue, 28 Feb 2023 16:22:04 +0000 (16:22 +0000)
Signed-off-by: Radoslaw Zarzynski <rzarzyns@redhat.com>
src/crimson/common/interruptible_future.h

index 00d77fbf33462ad57d8f50bca4a994ef96806cf6..c7cfcadd48149780fb09a51ab4784589326d9657 100644 (file)
@@ -110,13 +110,15 @@ struct interrupt_cond_t {
   void reset() {
     if (--ref_count == 0) {
       INTR_FUT_DEBUG(
-       "call_with_interruption_impl clearing interrupt_cond: {},{}",
+       "{}: clearing interrupt_cond: {},{}",
+        __func__,
        (void*)interrupt_cond.get(),
        typeid(InterruptCond).name());
       interrupt_cond.release();
     } else {
       INTR_FUT_DEBUG(
-       "call_with_interruption_impl end without clearing interrupt_cond: {},{}, ref_count: {}",
+       "{}: end without clearing interrupt_cond: {},{}, ref_count: {}",
+        __func__,
        (void*)interrupt_cond.get(),
        typeid(InterruptCond).name(),
        ref_count);