Skip to content

Commit

Permalink
Change error to warning (#19035)
Browse files Browse the repository at this point in the history
  • Loading branch information
doudz authored and fabaff committed Dec 5, 2018
1 parent b31c524 commit 3627de3
Showing 1 changed file with 2 additions and 2 deletions.
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

0 comments on commit 3627de3

Please sign in to comment.