From 579b77ba4cb57e1193aacc65e6fc0a5c45bc3ca1 Mon Sep 17 00:00:00 2001 From: Paulus Schoutsen Date: Tue, 25 Sep 2018 07:52:10 +0200 Subject: [PATCH] Don't warn but info when on dev mode (#16831) --- homeassistant/components/updater.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/homeassistant/components/updater.py b/homeassistant/components/updater.py index 0cb22bd98dc..4e64e3be2e6 100644 --- a/homeassistant/components/updater.py +++ b/homeassistant/components/updater.py @@ -76,7 +76,7 @@ async def async_setup(hass, config): """Set up the updater component.""" if 'dev' in current_version: # This component only makes sense in release versions - _LOGGER.warning("Running on 'dev', only analytics will be submitted") + _LOGGER.info("Running on 'dev', only analytics will be submitted") config = config.get(DOMAIN, {}) if config.get(CONF_REPORTING):