From 5a2fb3b981b8defb9f185cc42955aaef14b71d20 Mon Sep 17 00:00:00 2001 From: "Yanze (David) Wu" <133224895+David-Wu1119@users.noreply.github.com> Date: Tue, 22 Sep 2026 13:14:07 -0400 Subject: [PATCH] Log the table name in the Sisyphus sleep and wakeup messages (#182929) Co-authored-by: Claude Opus 5 --- homeassistant/components/sisyphus/light.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/homeassistant/components/sisyphus/light.py b/homeassistant/components/sisyphus/light.py index edbcd5f85a13..8354619c8854 100644 --- a/homeassistant/components/sisyphus/light.py +++ b/homeassistant/components/sisyphus/light.py @@ -90,14 +90,14 @@ class SisyphusLight(LightEntity): async def async_turn_off(self, **kwargs: Any) -> None: """Put the table to sleep.""" await self._table.sleep() - _LOGGER.debug("Sisyphus table %s: sleep") + _LOGGER.debug("Sisyphus table %s: sleep", self._name) @override async def async_turn_on(self, **kwargs: Any) -> None: """Wake up the table if necessary, optionally changes brightness.""" if not self.is_on: await self._table.wakeup() - _LOGGER.debug("Sisyphus table %s: wakeup") + _LOGGER.debug("Sisyphus table %s: wakeup", self._name) if "brightness" in kwargs: await self._table.set_brightness(kwargs["brightness"] / 255.0)