Notification message should be debug level, not info level.

This commit is contained in:
Aaron Heise 2023-02-13 20:07:40 -06:00
parent dd32b568ed
commit da1e62483d

View File

@ -471,7 +471,7 @@ def _subproc_data_ready(link: RNS.Link, chars_available: int):
return
else:
if not timeout:
log.info(
log.debug(
f"Notifying client try {tries} (retcode: {session.return_code} " +
f"chars avail: {chars_available})")
packet = RNS.Packet(link, DATA_AVAIL_MSG.encode("utf-8"))