summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorCalum Lind <calumlind+deluge@gmail.com>2021-08-29 16:07:53 +0100
committerCalum Lind <calumlind+deluge@gmail.com>2021-08-29 16:07:53 +0100
commit588f600ba281a6cd616f1019f1b1686b9ded091e (patch)
treedc38f162ba3e81bbd2aa6002e5b2fe2925651600
parentea609cd3e0193c395c8bea8425559b022eaa26f1 (diff)
downloaddeluge-588f600ba281a6cd616f1019f1b1686b9ded091e.tar.gz
deluge-588f600ba281a6cd616f1019f1b1686b9ded091e.tar.bz2
deluge-588f600ba281a6cd616f1019f1b1686b9ded091e.zip
[#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.
-rw-r--r--deluge/core/core.py2
1 files changed, 1 insertions, 1 deletions
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