From 54de3d89d1f7987707215ccdc5f8262d5f035b2b Mon Sep 17 00:00:00 2001 From: Andreas Jacobsen Date: Mon, 4 Sep 2017 13:40:08 +0200 Subject: [PATCH] Added intent_type to exception log (#9289) --- homeassistant/components/snips.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/homeassistant/components/snips.py b/homeassistant/components/snips.py index 6243de0b2d6..1f64f78e9c8 100644 --- a/homeassistant/components/snips.py +++ b/homeassistant/components/snips.py @@ -66,7 +66,7 @@ def async_setup(hass, config): yield from intent.async_handle( hass, DOMAIN, intent_type, slots, request['input']) except intent.IntentError: - _LOGGER.exception("Error while handling intent.") + _LOGGER.exception("Error while handling intent: %s.", intent_type) yield from hass.components.mqtt.async_subscribe( INTENT_TOPIC, message_received)