From 9d3b5cd0de25cfefdf1a87bd68ed40787554dc8f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Joakim=20S=C3=B8rensen?= Date: Tue, 27 Apr 2021 00:04:39 +0200 Subject: [PATCH] Change log severity from warn to error for custom integration version (#49726) --- homeassistant/loader.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/homeassistant/loader.py b/homeassistant/loader.py index 51bd0c2da1f..cdf9a831450 100644 --- a/homeassistant/loader.py +++ b/homeassistant/loader.py @@ -791,12 +791,12 @@ def custom_integration_warning(integration: Integration) -> None: _LOGGER.warning(CUSTOM_WARNING, integration.domain) if integration.manifest.get("version") is None: - _LOGGER.warning( + _LOGGER.error( CUSTOM_WARNING_VERSION_MISSING, integration.domain, integration.domain ) else: if not validate_custom_integration_version(integration.manifest["version"]): - _LOGGER.warning( + _LOGGER.error( CUSTOM_WARNING_VERSION_TYPE, integration.manifest["version"], integration.domain,