From 74b37bd61b2db9a4be25b9d7a9d10455f3697821 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Thu, 26 Nov 2015 23:57:57 +0100 Subject: [PATCH] Change to exception instead of error --- homeassistant/components/influx.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/homeassistant/components/influx.py b/homeassistant/components/influx.py index 78c3d15787e..5de2f3bdd73 100644 --- a/homeassistant/components/influx.py +++ b/homeassistant/components/influx.py @@ -113,7 +113,7 @@ def setup(hass, config): try: influx.write_points(json_body) except exceptions.InfluxDBClientError: - _LOGGER.error("Field type conflict") + _LOGGER.exception('Error saving event to Influx') hass.bus.listen(EVENT_STATE_CHANGED, event_listener)