From d344defc7ebccd77626eec276baba1746a673ff5 Mon Sep 17 00:00:00 2001 From: pavoni Date: Tue, 2 Feb 2016 16:26:17 +0000 Subject: [PATCH] Switch to warning. --- homeassistant/components/sensor/template.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/homeassistant/components/sensor/template.py b/homeassistant/components/sensor/template.py index fd2009b37e5..18701c19435 100644 --- a/homeassistant/components/sensor/template.py +++ b/homeassistant/components/sensor/template.py @@ -128,7 +128,7 @@ class SensorTemplate(Entity): self._state = STATE_ERROR if ex.args and ex.args[0].startswith( "UndefinedError: 'None' has no attribute"): - # Common during HA startup - so just a trace - _LOGGER.info(ex) + # Common during HA startup - so just a warning + _LOGGER.warning(ex) return _LOGGER.error(ex)