Skip to content

Commit

Permalink
Lower /graphql warning message priority
Browse files Browse the repository at this point in the history
  • Loading branch information
miohtama committed Oct 24, 2024
1 parent debabdf commit 388e19d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion eth_defi/event_reader/reorganisation_monitor.py
Original file line number Diff line number Diff line change
Expand Up @@ -742,7 +742,7 @@ def create_reorganisation_monitor(web3: Web3, check_depth=250) -> Reorganisation
reorg_mon = GraphQLReorganisationMonitor(graphql_url=graphql_url, check_depth=check_depth)
else:
# Default slow implementation
logger.warning("The node does not support /graphql interface. " "Downloading block headers and timestamps will be extremely slow." "Check documentation how to configure your node or choose a smaller timeframe for the buffer of trades.")
logger.info("The node does not support /graphql interface. " "Downloading block headers and timestamps will be extremely slow." "Check documentation how to configure your node or choose a smaller timeframe for the buffer of trades.")
reorg_mon = JSONRPCReorganisationMonitor(web3, check_depth=check_depth)

return reorg_mon

0 comments on commit 388e19d

Please sign in to comment.