Skip to content

Commit 70b6e91

Browse files
committed
Don't hide handler exceptions behind debug
1 parent 3a1e0d6 commit 70b6e91

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

zha/zigbee/endpoint.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -204,7 +204,7 @@ async def _execute_handler_tasks(
204204
results = await gather(*tasks, return_exceptions=True)
205205
for cluster_handler, outcome in zip(cluster_handlers, results):
206206
if isinstance(outcome, Exception):
207-
cluster_handler.debug(
207+
cluster_handler.warning(
208208
"'%s' stage failed: %s", func_name, str(outcome), exc_info=outcome
209209
)
210210
else:

0 commit comments

Comments
 (0)