From 47bfef96405e4fd93ff1fde31be9b813eaa48dc1 Mon Sep 17 00:00:00 2001 From: Thijs de Jong Date: Sun, 11 Feb 2018 20:36:04 +0100 Subject: [PATCH] Clarify tahoma errrors (#12307) --- homeassistant/components/tahoma.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/homeassistant/components/tahoma.py b/homeassistant/components/tahoma.py index 28a54f40d56..00ebc78a40b 100644 --- a/homeassistant/components/tahoma.py +++ b/homeassistant/components/tahoma.py @@ -57,14 +57,14 @@ def setup(hass, config): try: api = TahomaApi(username, password) except RequestException: - _LOGGER.exception("Error communicating with Tahoma API") + _LOGGER.exception("Error when trying to log in to the Tahoma API") return False try: api.get_setup() devices = api.get_devices() except RequestException: - _LOGGER.exception("Cannot fetch information from Tahoma API") + _LOGGER.exception("Error when getting devices from the Tahoma API") return False hass.data[DOMAIN] = {