[#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
|
@ -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…
Reference in New Issue