Skip to content

Commit 29cab5c

Browse files
committed
runner: cleanup debugging
1 parent 9d5aabd commit 29cab5c

1 file changed

Lines changed: 3 additions & 2 deletions

File tree

libmpathutil/runner.c

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -68,8 +68,9 @@ static void cleanup_context(struct runner_context **prctx)
6868
}
6969
if (st != RUNNER_RUNNING) {
7070
uatomic_cmpxchg(&rctx->status, st, RUNNER_DEAD);
71-
condlog(st == RUNNER_DEAD || st == RUNNER_CANCELLED ? 3 : 2,
72-
"%s: runner %p finished in state '%s'", __func__, rctx,
71+
condlog(2,
72+
"%s: runner %p/%lx finished in state '%s'", __func__,
73+
rctx, (unsigned long)rctx->thr,
7374
runner_state_name(st));
7475
}
7576
put_shared_ptr(rctx);

0 commit comments

Comments
 (0)