Change to warning if attributes missing.

pull/1099/head
pavoni 2016-02-02 14:14:29 +00:00
parent 1a5d18fd66
commit 3aad223c95
1 changed files with 5 additions and 0 deletions

View File

@ -126,4 +126,9 @@ class SensorTemplate(Entity):
self._state = template.render(self.hass, self._template)
except TemplateError as ex:
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)
return
_LOGGER.error(ex)