Change log level of connection failure to info (#132625)

Co-authored-by: Franck Nijhof <git@frenck.dev>
This commit is contained in:
Philip Baylas 2024-12-18 14:07:03 +00:00 committed by GitHub
parent 3132700492
commit fce6d6246f
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -425,9 +425,7 @@ class PlexServer:
client = resource.connect(timeout=3)
_LOGGER.debug("Resource connection successful to plex.tv: %s", client)
except NotFound:
_LOGGER.error(
"Resource connection failed to plex.tv: %s", resource.name
)
_LOGGER.info("Resource connection failed to plex.tv: %s", resource.name)
else:
client.proxyThroughServer(value=False, server=self._plex_server)
self._client_device_cache[client.machineIdentifier] = client