mirror of
https://git.deluge-torrent.org/deluge
synced 2025-08-08 09:28:41 +00:00
[#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.
This commit is contained in:
parent
ea609cd3e0
commit
588f600ba2
1 changed files with 1 additions and 1 deletions
|
@ -653,7 +653,7 @@ class Core(component.Component):
|
||||||
)
|
)
|
||||||
status[key] = self.session_status[new_key]
|
status[key] = self.session_status[new_key]
|
||||||
else:
|
else:
|
||||||
log.warning('Session status key not valid: %s', key)
|
log.debug('Session status key not valid: %s', key)
|
||||||
return status
|
return status
|
||||||
|
|
||||||
@export
|
@export
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue