Skip to content

Commit

Permalink
fix: debug output
Browse files Browse the repository at this point in the history
  • Loading branch information
atanmarko committed Nov 1, 2024
1 parent a9181dc commit eb03768
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion paladin-core/src/runtime/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -755,7 +755,8 @@ impl WorkerRuntime {
loop {
ipc_sig_term_rx.changed().await.expect("IPC channel closed");
let received_key = ipc_sig_term_rx.borrow().clone();
debug!(routing_key = %routing_key, "received IPC termination signal with key: {received_key}");
debug!(routing_key = %routing_key, received_key = %received_key,
"received IPC termination signal");

if received_key == COMMAND_IPC_ABORT_ALL_KEY {
warn!(routing_key = %routing_key, "worker abort signal received");
Expand Down

0 comments on commit eb03768

Please sign in to comment.