Skip to content

Commit b8c19f2

Browse files
RaHehlfrenck
authored andcommitted
UnifiProtect Change log level from debug to error for connection exceptions in ProtectFlowHandler (home-assistant#147730)
1 parent b677ce6 commit b8c19f2

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
@@ -274,7 +274,7 @@ async def _async_get_nvr_data(
274274
_LOGGER.debug(ex)
275275
errors[CONF_PASSWORD] = "invalid_auth"
276276
except ClientError as ex:
277-
_LOGGER.debug(ex)
277+
_LOGGER.error(ex)
278278
errors["base"] = "cannot_connect"
279279
else:
280280
if nvr_data.version < MIN_REQUIRED_PROTECT_V:

0 commit comments

Comments
 (0)