From 2febea55722b7bd2741a58a3ee33973e29ae2eac Mon Sep 17 00:00:00 2001 From: Paul Tarjan Date: Wed, 10 Dec 2025 17:03:07 +0000 Subject: [PATCH] Change Samsung TV WoL turn_on log from warning to debug The warning message "Attempting to turn on via Wake-On-Lan" fires every time the user turns on their TV via WoL, creating log noise. This should be a debug message since it's informational, not indicating an actual problem. If WoL isn't working, the user will notice because the TV won't turn on. --- homeassistant/components/samsungtv/entity.py | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/homeassistant/components/samsungtv/entity.py b/homeassistant/components/samsungtv/entity.py index 2927dcf2683240..59c4f71d9c80d8 100644 --- a/homeassistant/components/samsungtv/entity.py +++ b/homeassistant/components/samsungtv/entity.py @@ -92,10 +92,8 @@ async def async_turn_on(self, **kwargs: Any) -> None: 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)