Browse Source
Log errors with source chain
See anyhow docs for details.
fix-bad-api-calls
Thomas Eizinger
3 years ago
No known key found for this signature in database
GPG Key ID: 651AC83A6C6C8B96
1 changed files with
1 additions and
1 deletions
-
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); |
|
|
|
} |
|
|
|
}; |
|
|
|
} |
|
|
|