crimson/common: fix method name in interrupt_cond_t::reset()'s debugs

Signed-off-by: Radoslaw Zarzynski <rzarzyns@redhat.com>
This commit is contained in:
Radoslaw Zarzynski 2022-12-05 19:46:36 +00:00
parent ab9bd2430f
commit b9b4101571

View 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);