Tweak task dropped log verbosity (#4249)

This commit is contained in:
Jon Häggblad
2023-12-14 10:26:09 +01:00
committed by GitHub
parent 723e30fb1d
commit a81e7e6c53
+3 -3
View File
@@ -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",
);
}