Change mutex log message level to debug
This commit is contained in:
parent
e6e7e6f42a
commit
f5b19f24c6
1 changed files with 1 additions and 1 deletions
|
@ -119,7 +119,7 @@ async fn inbox(
|
||||||
let now = Instant::now();
|
let now = Instant::now();
|
||||||
// Store mutex guard in a variable to prevent it from being dropped immediately
|
// Store mutex guard in a variable to prevent it from being dropped immediately
|
||||||
let _guard = inbox_mutex.lock().await;
|
let _guard = inbox_mutex.lock().await;
|
||||||
log::info!(
|
log::debug!(
|
||||||
"acquired inbox lock after waiting for {:.2?}: {}",
|
"acquired inbox lock after waiting for {:.2?}: {}",
|
||||||
now.elapsed(),
|
now.elapsed(),
|
||||||
activity["id"].as_str().unwrap_or_default(),
|
activity["id"].as_str().unwrap_or_default(),
|
||||||
|
|
Loading…
Reference in a new issue