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", ); }