Don't warn but info when on dev mode (#16831)

This commit is contained in:
Paulus Schoutsen 2018-09-25 07:52:10 +02:00 committed by Fabian Affolter
parent b52e8525ac
commit 579b77ba4c

View file

@ -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):