fix: thread created should be debug, not info

This commit is contained in:
Lucaskyy 2022-07-09 19:35:31 +02:00
parent 25d343dfa5
commit 8afda248be
No known key found for this signature in database
GPG Key ID: 1530BFF96D1EEB89

View File

@ -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;