Reduce log level for Plex service call (#39647)

This commit is contained in:
jjlawren 2020-09-04 09:47:39 -05:00 committed by GitHub
parent 0b7576b634
commit 55040cfde5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -28,7 +28,7 @@ async def async_setup_services(hass):
await hass.async_add_executor_job(refresh_library, hass, service_call) await hass.async_add_executor_job(refresh_library, hass, service_call)
async def async_scan_clients_service(_): 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]: for server_id in hass.data[DOMAIN][SERVERS]:
async_dispatcher_send(hass, PLEX_UPDATE_PLATFORMS_SIGNAL.format(server_id)) async_dispatcher_send(hass, PLEX_UPDATE_PLATFORMS_SIGNAL.format(server_id))