forked from platypush/platypush
EntityUpdateEvent traces can now be logged on INFO level
The EntityUpdateEvents generated by light.hue are now less noisy.
This commit is contained in:
parent
247912799f
commit
4d762b81dc
1 changed files with 0 additions and 4 deletions
|
@ -1,4 +1,3 @@
|
|||
import logging
|
||||
from typing import Union
|
||||
|
||||
from platypush.entities import Entity
|
||||
|
@ -18,9 +17,6 @@ class EntityUpdateEvent(EntityEvent):
|
|||
a sensor, a media player etc.) updates its state.
|
||||
"""
|
||||
|
||||
def __init__(self, *args, logging_level=logging.DEBUG, **kwargs):
|
||||
super().__init__(*args, logging_level=logging_level, **kwargs)
|
||||
|
||||
|
||||
class EntityDeleteEvent(EntityEvent):
|
||||
"""
|
||||
|
|
Loading…
Reference in a new issue