aboutsummaryrefslogtreecommitdiff
path: root/src/main.rs
diff options
context:
space:
mode:
authorNathan Perry <np@nathanperry.dev>2024-08-16 06:40:25 -0400
committerNathan Perry <np@nathanperry.dev>2024-08-16 06:40:25 -0400
commit5a2dc4070c1d14f22a7671c6f82ca2f4578369bd (patch)
tree4dfa57f42a6cca70f1cac5363b7b547e46318c26 /src/main.rs
parent728d951b87ae9ba15ca1453d24ce9ce618badd5a (diff)
rework logging to use tracing via grate
Diffstat (limited to 'src/main.rs')
-rw-r--r--src/main.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main.rs b/src/main.rs
index e4f2014..db22047 100644
--- a/src/main.rs
+++ b/src/main.rs
@@ -7,6 +7,6 @@
#[tokio::main]
async fn main() -> anyhow::Result<()> {
- thulani::log_setup::init(false).expect("initializing logging");
+ thulani::log_setup::init();
thulani::bot::run().await
}