From 55040cfde5a35c17e768310734139a9f79b359a5 Mon Sep 17 00:00:00 2001 From: jjlawren Date: Fri, 4 Sep 2020 09:47:39 -0500 Subject: [PATCH] Reduce log level for Plex service call (#39647) --- homeassistant/components/plex/services.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/homeassistant/components/plex/services.py b/homeassistant/components/plex/services.py index 857f6fcf54e..c16da485b57 100644 --- a/homeassistant/components/plex/services.py +++ b/homeassistant/components/plex/services.py @@ -28,7 +28,7 @@ async def async_setup_services(hass): await hass.async_add_executor_job(refresh_library, hass, service_call) async def async_scan_clients_service(_): - _LOGGER.info("Scanning for new Plex clients") + _LOGGER.debug("Scanning for new Plex clients") for server_id in hass.data[DOMAIN][SERVERS]: async_dispatcher_send(hass, PLEX_UPDATE_PLATFORMS_SIGNAL.format(server_id))