Skip to content

Commit

Permalink
removed print statements
Browse files Browse the repository at this point in the history
  • Loading branch information
F483 committed Jan 22, 2016
1 parent d0bc493 commit 6885f8d
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ else
endif
export PYCOIN_NATIVE=openssl
export STORJNODE_QUERY_TIMEOUT=0.3
export STORJNODE_ENABLE_GLOBAL_LOGGER=1
#export STORJNODE_ENABLE_GLOBAL_LOGGER=1


help:
Expand Down
1 change: 0 additions & 1 deletion storjnode/network/node.py
Original file line number Diff line number Diff line change
Expand Up @@ -425,7 +425,6 @@ def handle_error(err):

# Make data request when we have their UNL.
def on_success(peer_unl):
print(peer_unl)
return self.bandwidth_test.start(peer_unl)

def on_error(err):
Expand Down
2 changes: 1 addition & 1 deletion tests/network/node.py
Original file line number Diff line number Diff line change
Expand Up @@ -245,7 +245,7 @@ def test_relay_messaging(self):
random.shuffle(receivers)
for sender, receiver in zip(senders, receivers):
msg = "TEST: sending relay message from {0} to {1}"
print(msg.format(sender.get_address(), receiver.get_address()))
_log.info(msg.format(sender.get_address(), receiver.get_address()))
self._test_relay_message(sender, receiver, True)

def test_relay_message_to_void(self): # for coverage
Expand Down

0 comments on commit 6885f8d

Please sign in to comment.