updated with error handling

This commit is contained in:
2022-08-13 17:34:49 +02:00
parent 275435daf5
commit f0488cded8
2 changed files with 19 additions and 8 deletions

View File

@@ -35,7 +35,7 @@ fn main() -> anyhow::Result<()> {
fn init_logging() -> anyhow::Result<()> {
tracing_subscriber::fmt()
.pretty()
.with_max_level(Level::INFO)
.with_max_level(Level::TRACE)
.init();
Ok(())