Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions homeassistant/components/media_player/plex.py
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ def update_devices():
_LOGGER.exception("Error listing plex devices")
return
except requests.exceptions.RequestException as ex:
_LOGGER.error(
_LOGGER.warning(
"Could not connect to plex server at http://%s (%s)", host, ex)
return

Expand Down Expand Up @@ -218,7 +218,7 @@ def update_sessions():
_LOGGER.exception("Error listing plex sessions")
return
except requests.exceptions.RequestException as ex:
_LOGGER.error(
_LOGGER.warning(
"Could not connect to plex server at http://%s (%s)", host, ex)
return

Expand Down