[#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:
Calum Lind 2021-08-29 16:07:53 +01:00
parent ea609cd3e0
commit 588f600ba2
1 changed files with 1 additions and 1 deletions

View File

@ -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