Skip to content

Commit 7447cf3

Browse files
authored
UnifiProtect Change log level from debug to error for connection exceptions in ProtectFlowHandler (home-assistant#147730)
1 parent 3d27c0c commit 7447cf3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

homeassistant/components/unifiprotect/config_flow.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -272,7 +272,7 @@ async def _async_get_nvr_data(
272272
_LOGGER.debug(ex)
273273
errors[CONF_PASSWORD] = "invalid_auth"
274274
except ClientError as ex:
275-
_LOGGER.debug(ex)
275+
_LOGGER.error(ex)
276276
errors["base"] = "cannot_connect"
277277
else:
278278
if nvr_data.version < MIN_REQUIRED_PROTECT_V:

0 commit comments

Comments
 (0)