Skip to content

Commit

Permalink
Warning
Browse files Browse the repository at this point in the history
  • Loading branch information
koirikivi committed Apr 20, 2024
1 parent 136e0e8 commit 7cd0ba3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bridge_node/bridge/common/p2p/network.py
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ def ask(self, question: str, **kwargs: Any):
try:
answer = peer.answer(question, **serialized_kwargs)
except CommunicationError as e:
logger.info("Error connecting to peer %s: %s", peer, e)
logger.warning("Error connecting to peer %s: %s", peer, e)
answer = None
if answer is not None:
# TODO: proper return type for null answer
Expand Down

0 comments on commit 7cd0ba3

Please sign in to comment.