mirror of
https://github.com/home-assistant/core.git
synced 2026-05-04 11:54:35 +02:00
Change Samsung TV WoL turn_on log from warning to debug (#158676)
This commit is contained in:
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user