From f5b19f24c6f645e6ceb7156e7e544e67d207d8c0 Mon Sep 17 00:00:00 2001 From: silverpill Date: Fri, 6 May 2022 19:55:28 +0000 Subject: [PATCH] Change mutex log message level to debug --- src/activitypub/views.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/activitypub/views.rs b/src/activitypub/views.rs index b1194e9..d2cc078 100644 --- a/src/activitypub/views.rs +++ b/src/activitypub/views.rs @@ -119,7 +119,7 @@ async fn inbox( let now = Instant::now(); // Store mutex guard in a variable to prevent it from being dropped immediately let _guard = inbox_mutex.lock().await; - log::info!( + log::debug!( "acquired inbox lock after waiting for {:.2?}: {}", now.elapsed(), activity["id"].as_str().unwrap_or_default(),