From fe15736418d738f13b7b6d768cab5ca0205bf97b Mon Sep 17 00:00:00 2001 From: Alexei Chetroi Date: Mon, 25 Oct 2021 10:30:00 -0400 Subject: [PATCH] Log correct ZHA channel initialization step (#58410) --- homeassistant/components/zha/core/channels/base.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/homeassistant/components/zha/core/channels/base.py b/homeassistant/components/zha/core/channels/base.py index d297b5187c0..b6981b4cd74 100644 --- a/homeassistant/components/zha/core/channels/base.py +++ b/homeassistant/components/zha/core/channels/base.py @@ -332,7 +332,7 @@ class ZigbeeChannel(LogMixin): if ch_specific_init: await ch_specific_init(from_cache=from_cache) - self.debug("finished channel configuration") + self.debug("finished channel initialization") self._status = ChannelStatus.INITIALIZED @callback