Skip to content

Commit 9be2955

Browse files
committed
comment out debug print() call
about relaying multicast payloads
1 parent 719522d commit 9be2955

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

circuitpython_nrf24l01/network/mixins.py

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -415,12 +415,12 @@ def _handle_frame_for_other_node(self, msg_t: int) -> Tuple[bool, int]:
415415
return (True, 0)
416416
self.queue.enqueue(self.frame_buf)
417417
if self.multicast_relay:
418-
print(
419-
"Forwarding multicast frame from {} to {}".format(
420-
oct(self.frame_buf.header.from_node),
421-
oct(self.frame_buf.header.to_node),
422-
),
423-
)
418+
# print(
419+
# "Forwarding multicast frame from {} to {}".format(
420+
# oct(self.frame_buf.header.from_node),
421+
# oct(self.frame_buf.header.to_node),
422+
# ),
423+
# )
424424
if not self._addr >> 3:
425425
time.sleep(0.0024)
426426
time.sleep((self._addr % 4) * 0.0006)

0 commit comments

Comments
 (0)