feat: with init command

Signed-off-by: kjuulh <contact@kjuulh.io>
This commit is contained in:
2023-06-17 03:38:48 +02:00
parent 91ee9d4387
commit 6c5fed87b1
13 changed files with 1914 additions and 310 deletions

View File

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