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', {