Change Samsung TV WoL turn_on log from warning to debug (#158676)

This commit is contained in:
Paul Tarjan
2025-12-23 11:01:44 -10:00
committed by GitHub
parent 5150efd63f
commit 34db548725
+2 -4
View File
@@ -92,10 +92,8 @@ class SamsungTVEntity(CoordinatorEntity[SamsungTVDataUpdateCoordinator], Entity)
LOGGER.debug("Attempting to turn on %s via automation", self.entity_id)
await self._turn_on_action.async_run(self.hass, self._context)
elif self._mac:
LOGGER.warning(
"Attempting to turn on %s via Wake-On-Lan; if this does not work, "
"please ensure that Wake-On-Lan is available for your device or use "
"a turn_on automation",
LOGGER.debug(
"Attempting to turn on %s via Wake-On-Lan",
self.entity_id,
)
await self.hass.async_add_executor_job(self._wake_on_lan)