From 9efcbb7f5845965e8ade0f8d687aeeafaae7ce73 Mon Sep 17 00:00:00 2001 From: Tobias Haase Date: Wed, 31 Jul 2019 07:04:30 +0200 Subject: [PATCH] Edit log message when local version is newer --- homeassistant/components/updater/__init__.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/homeassistant/components/updater/__init__.py b/homeassistant/components/updater/__init__.py index cf6c7b6c32d..a0a9073964d 100644 --- a/homeassistant/components/updater/__init__.py +++ b/homeassistant/components/updater/__init__.py @@ -104,9 +104,8 @@ async def async_setup(hass, config): _LOGGER.info( "You are on the latest version (%s) of Home Assistant", newest) elif StrictVersion(newest) < StrictVersion(current_version): - _LOGGER.warning( - "You are before the latest version (%s) of Home Assistant", - newest) + _LOGGER.debug( + "Local version is newer than the latest version (%s)", newest) hass.states.async_set( ENTITY_ID, 'on' if update_available else 'off', {