Browse Source

Do not swallow error when not tracing

pull/99/head
B. Blechschmidt 2 years ago
parent
commit
498a43b471
  1. 2
      src/bin/main.rs

2
src/bin/main.rs

@ -26,7 +26,7 @@ async fn main() -> Result<(), BoxError> {
.await;
if let Err(err) = join_handle.await {
log::trace!("main_entry error {}", err);
log::error!("main_entry error {}", err);
}
Ok(())

Loading…
Cancel
Save