From 8afda248beb140678d14a4eca6ff1c3562ad315e Mon Sep 17 00:00:00 2001 From: Lucaskyy Date: Sat, 9 Jul 2022 19:35:31 +0200 Subject: [PATCH] fix: thread created should be debug, not info --- src/main.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.rs b/src/main.rs index dff6882..2672ad6 100644 --- a/src/main.rs +++ b/src/main.rs @@ -189,7 +189,7 @@ impl EventHandler for Handler { return; } - info!("Thread created: {:?}", thread); + debug!("Thread created: {:?}", thread); let configuration_lock = get_configuration_lock(&ctx).await; let configuration = configuration_lock.read().await;