Browse Source

Log errors with source chain

See anyhow docs for details.
fix-bad-api-calls
Thomas Eizinger 3 years ago
parent
commit
47c9b85c1a
No known key found for this signature in database GPG Key ID: 651AC83A6C6C8B96
  1. 2
      daemon/src/actors.rs

2
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);
}
};
}

Loading…
Cancel
Save