From c212b4c034d0cdcef32a9f9d3959a60da435c26e Mon Sep 17 00:00:00 2001 From: Paulus Schoutsen Date: Mon, 24 Sep 2018 23:45:36 +0200 Subject: [PATCH] Don't warn but info when on dev mode --- 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 0cb22bd98dcd93..4e64e3be2e6a84 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):