Skip to content

Commit

Permalink
debug
Browse files Browse the repository at this point in the history
  • Loading branch information
dmulcahey committed Mar 24, 2024
1 parent 394ae09 commit 65dde4a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions zha/application/platforms/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -466,7 +466,7 @@ def send_event(self, signal: dict[str, Any]) -> None:
"id": self._endpoint.id,
"unique_id": self._endpoint.unique_id,
}
_LOGGER.info("Sending event from platform entity: %s", signal)
self.debug("Sending event from platform entity: %s", signal)
self.device.send_event(signal)

def to_json(self) -> dict:
Expand Down Expand Up @@ -542,7 +542,7 @@ def send_event(self, signal: dict[str, Any]) -> None:
signal["group"] = {
"id": self._group.group_id,
}
_LOGGER.info("Sending event from group entity: %s", signal)
self.debug("Sending event from group entity: %s", signal)
self._group.send_event(signal)

def to_json(self) -> dict[str, Any]:
Expand Down
2 changes: 1 addition & 1 deletion zha/application/platforms/sensor/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -394,7 +394,7 @@ def send_event(self, signal: dict[str, Any]) -> None:
"unique_id": self._unique_id,
"platform": self.PLATFORM,
}
_LOGGER.info("Sending event from device counter sensor entity: %s", signal)
self.debug("Sending event from device counter sensor entity: %s", signal)
self._device.send_event(signal)

def to_json(self) -> dict:
Expand Down

0 comments on commit 65dde4a

Please sign in to comment.