refactor: log events with level trace

This commit is contained in:
Sculas 2022-08-09 21:03:38 +02:00 committed by GitHub
parent 852c09964a
commit 9407f1b37e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -77,7 +77,7 @@ async fn main() {
}),
listener: |_ctx, event, _framework, _data| {
Box::pin(async move {
tracing::info!("{:?}", event.name());
tracing::trace!("{:?}", event.name());
Ok(())
})
},
@ -108,4 +108,4 @@ async fn main() {
.await;
client.start().await.unwrap();
}
}