From 588f600ba281a6cd616f1019f1b1686b9ded091e Mon Sep 17 00:00:00 2001 From: Calum Lind Date: Sun, 29 Aug 2021 16:07:53 +0100 Subject: [PATCH] [#3310|Core] Change logging invalid session status key to debug Users were complaining about logs being flooded with `Session status key not valid` which was a result of the Stats plugin using the wrong status keys. Fixed by changing to debug log level since not useful in warning level if spamming. --- deluge/core/core.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/deluge/core/core.py b/deluge/core/core.py index 2160f769a..8abf6ae02 100644 --- a/deluge/core/core.py +++ b/deluge/core/core.py @@ -653,7 +653,7 @@ class Core(component.Component): ) status[key] = self.session_status[new_key] else: - log.warning('Session status key not valid: %s', key) + log.debug('Session status key not valid: %s', key) return status @export