diff --git a/daemon/src/actors.rs b/daemon/src/actors.rs index 52451d3..ba9846d 100644 --- a/daemon/src/actors.rs +++ b/daemon/src/actors.rs @@ -2,7 +2,7 @@ macro_rules! log_error { ($future:expr) => { if let Err(e) = $future.await { - tracing::error!(%e); + tracing::error!("Message handler failed: {:#}", e); } }; }