Do not swallow error when not tracing

This commit is contained in:
B. Blechschmidt 2024-02-24 23:38:52 +01:00
parent d03e3c268d
commit 498a43b471

View file

@ -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(())