From bf2bcb6dcff632d4360dcd1683df62e52721549f Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Tue, 10 Nov 2015 18:20:10 +0100 Subject: [PATCH] Use _LOGGER.error instead of _LOGGER.exception --- homeassistant/components/notify/pushetta.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/homeassistant/components/notify/pushetta.py b/homeassistant/components/notify/pushetta.py index b51461c13ae..22bbd5175c6 100644 --- a/homeassistant/components/notify/pushetta.py +++ b/homeassistant/components/notify/pushetta.py @@ -35,7 +35,7 @@ def get_service(hass, config): _LOGGER.error("Please check your access token") return None except exceptions.ChannelNotFoundError: - _LOGGER.exception("Channel '%s' not found", config['channel_name']) + _LOGGER.error("Channel '%s' not found", config['channel_name']) return None return PushettaNotificationService(config[CONF_API_KEY],