Remove unnecessary debug message from vesync (#139083)

Remove unnecessary debug write
This commit is contained in:
Indu Prakash 2025-02-22 17:35:32 -06:00 committed by GitHub
parent 5a0a3d27d9
commit 17c1c0e155
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -102,5 +102,4 @@ class VeSyncBinarySensor(BinarySensorEntity, VeSyncBaseEntity):
@property @property
def is_on(self) -> bool: def is_on(self) -> bool:
"""Return true if the binary sensor is on.""" """Return true if the binary sensor is on."""
_LOGGER.debug(rgetattr(self.device, self.entity_description.key))
return self.entity_description.is_on(self.device) return self.entity_description.is_on(self.device)