Disable logging of ZwaveValueEvent objects, as they tend to be very verbose
This commit is contained in:
parent
b06867dc5d
commit
3d6af00ee6
1 changed files with 1 additions and 0 deletions
|
@ -154,6 +154,7 @@ class ZwaveValueEvent(ZwaveEvent):
|
|||
Abstract class for Z-Wave value events.
|
||||
"""
|
||||
def __init__(self, node: Dict[str, Any], value: Dict[str, Any], *args, **kwargs):
|
||||
kwargs['disable_logging'] = True
|
||||
super().__init__(*args, node=node, value=value, **kwargs)
|
||||
|
||||
|
||||
|
|
Loading…
Reference in a new issue