Skip to content

Commit 5601d94

Browse files
Demote OOB data logging from warning to info (#361)
This commit addresses #359 Signed-off-by: Hannes Weisbach <[email protected]>
1 parent 71eb3ae commit 5601d94

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

pycyphal/_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "1.23.0"
1+
__version__ = "1.23.1"

pycyphal/transport/serial/_serial.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -339,7 +339,7 @@ def _handle_received_out_of_band_data(self, timestamp: Timestamp, data: memoryvi
339339
printable = printable.decode("utf8")
340340
except ValueError:
341341
pass
342-
_logger.warning("%s: Out-of-band received at %s: %r", self._serial_port.name, timestamp, printable)
342+
_logger.info("%s: Out-of-band received at %s: %r", self._serial_port.name, timestamp, printable)
343343

344344
def _handle_received_item_and_update_stats(
345345
self, timestamp: Timestamp, item: typing.Union[SerialFrame, memoryview], in_bytes_count: int

0 commit comments

Comments
 (0)