reduce the level of logging for packet parse errors

patch bump
This commit is contained in:
2026-03-01 17:22:06 +00:00
parent 69263c22f2
commit a0ec00652b
3 changed files with 3 additions and 3 deletions

View File

@@ -96,7 +96,7 @@ class Producer(threading.Thread):
try:
header = VbanResponseHeader.from_bytes(data[:HEADER_SIZE])
except ValueError as e:
self.logger.warning(f'Error parsing response packet: {e}')
self.logger.debug(f'Error parsing response packet: {e}')
return None
match header.format_nbs: