Skip to content

Commit

Permalink
change log level
Browse files Browse the repository at this point in the history
  • Loading branch information
yungwine committed May 29, 2024
1 parent 815cf63 commit 125c548
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pytoniq/adnl/adnl.py
Original file line number Diff line number Diff line change
Expand Up @@ -306,7 +306,7 @@ async def _process_incoming_message(self, message: dict, peer: Node):
elif message['@type'] == 'adnl.message.custom':
if peer is None:
# should not ever happen fixme
self.logger.info(f'Received custom message from unknown peer: {message}')
self.logger.debug(f'Received custom message from unknown peer: {message}')
return
await self._process_custom_message(message, peer)
elif message['@type'] == 'adnl.message.part':
Expand Down

0 comments on commit 125c548

Please sign in to comment.