Downgraded a bunch of messages from debug to trace
This commit is contained in:
parent
aa2a41a53c
commit
a5ae2988b8
9 changed files with 39 additions and 31 deletions
|
|
@ -1,4 +1,4 @@
|
|||
use tracing::{debug, error, trace, Instrument};
|
||||
use tracing::{error, trace, Instrument};
|
||||
|
||||
pub fn spawn(
|
||||
span: tracing::Span,
|
||||
|
|
@ -8,7 +8,7 @@ pub fn spawn(
|
|||
trace!("started");
|
||||
match fut.await {
|
||||
Ok(_) => {
|
||||
debug!("finished");
|
||||
trace!("finished");
|
||||
}
|
||||
Err(e) => {
|
||||
error!("finished with error: {:#}", e)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue