From a81e7e6c53370f3cc06432dec28ba382c110ecaf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jon=20H=C3=A4ggblad?= Date: Thu, 14 Dec 2023 10:26:09 +0100 Subject: [PATCH] Tweak task dropped log verbosity (#4249) --- common/task/src/manager.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/common/task/src/manager.rs b/common/task/src/manager.rs index c7eed1df2a..35b4df3bf8 100644 --- a/common/task/src/manager.rs +++ b/common/task/src/manager.rs @@ -494,13 +494,13 @@ impl Drop for TaskClient { fn drop(&mut self) { if !self.mode.should_signal_on_drop() { self.log( - Level::Debug, - "the task client is getting dropped: this is expected during client shutdown", + Level::Trace, + "the task client is getting dropped but inststructed to not signal: this is expected during client shutdown", ); return; } else { self.log( - Level::Info, + Level::Debug, "the task client is getting dropped: this is expected during client shutdown", ); }