Skip to content

Commit af5aa39

Browse files
Copilotpuddly
andcommitted
Change LOGGER.warning to LOGGER.debug in security.py
Co-authored-by: puddly <32534428+puddly@users.noreply.github.com>
1 parent 2765045 commit af5aa39

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

zigpy_znp/znp/security.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -296,7 +296,7 @@ async def read_devices(
296296

297297
async for key in read_hashed_link_keys(znp, tclk_seed):
298298
if key.partner_ieee not in devices:
299-
LOGGER.warning(
299+
LOGGER.debug(
300300
"Skipping hashed link key %s (tx: %s, rx: %s) for unknown device %s",
301301
":".join(f"{b:02x}" for b in key.key),
302302
key.tx_counter,
@@ -309,7 +309,7 @@ async def read_devices(
309309

310310
async for key in read_unhashed_link_keys(znp, addr_mgr):
311311
if key.partner_ieee not in devices:
312-
LOGGER.warning(
312+
LOGGER.debug(
313313
"Skipping unhashed link key %s (tx: %s, rx: %s) for unknown device %s",
314314
":".join(f"{b:02x}" for b in key.key),
315315
key.tx_counter,

0 commit comments

Comments
 (0)