From 44fdfdf695d1562a8e2e49076295e72448c5ce48 Mon Sep 17 00:00:00 2001 From: Alexei Chetroi Date: Mon, 17 Sep 2018 01:45:44 -0400 Subject: [PATCH] Log raw result of configure_reporting() command. (#16655) --- homeassistant/components/zha/__init__.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/homeassistant/components/zha/__init__.py b/homeassistant/components/zha/__init__.py index f6b5868ff81..573f432f4c0 100644 --- a/homeassistant/components/zha/__init__.py +++ b/homeassistant/components/zha/__init__.py @@ -433,9 +433,9 @@ async def configure_reporting(entity_id, cluster, attr, skip_bind=False, res = await cluster.configure_reporting(attr, min_report, max_report, reportable_change) _LOGGER.debug( - "%s: reporting '%s' attr on '%s' cluster: %d/%d/%d: Status: %s", + "%s: reporting '%s' attr on '%s' cluster: %d/%d/%d: Result: '%s'", entity_id, attr_name, cluster_name, min_report, max_report, - reportable_change, res[0][0].status + reportable_change, res ) except DeliveryError as ex: _LOGGER.debug(