Skip to content

Commit f0b616a

Browse files
committed
Fix incorrect log level.
1 parent 2793723 commit f0b616a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

custom_components/powersensor/PowersensorMessageDispatcher.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -228,7 +228,7 @@ async def _plug_added(self, info):
228228
await self.enqueue_plug_for_adding(network_info)
229229

230230
async def _plug_updated(self, info):
231-
_LOGGER.error(f" Request to update plug received: {info}")
231+
_LOGGER.debug(f" Request to update plug received: {info}")
232232
mac = info['properties'][b'id'].decode('utf-8')
233233
self.cancel_any_pending_removal(mac, "request to update plug")
234234
host = info['addresses'][0]

0 commit comments

Comments
 (0)