Skip to content
Snippets Groups Projects
Commit a4478bcd authored by Jeffrey Wigger's avatar Jeffrey Wigger
Browse files

removed high volume debug in tcp randomwalk

parent 810ddb2e
No related branches found
No related tags found
No related merge requests found
......@@ -278,10 +278,10 @@ class TCPRandomWalk(TCPRandomWalkBase):
Received and decrypted data
"""
logging.debug("Receive in TCPRandomWalk")
# logging.debug("Receive in TCPRandomWalk")
try:
return self.recv_queue.get(block=block, timeout=None) # already decrypted
logging.debug("Receive in TCPRandomWalk; post get")
# logging.debug("Receive in TCPRandomWalk; post get")
except Empty:
return None, None
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment