From 603dd64dc48ba4982746658ccbe66fd5fa5b3905 Mon Sep 17 00:00:00 2001 From: tim Date: Mon, 24 Feb 2025 21:00:53 -0400 Subject: [PATCH] log tweak --- src/dexorder/runner.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/dexorder/runner.py b/src/dexorder/runner.py index fc41635..165c696 100644 --- a/src/dexorder/runner.py +++ b/src/dexorder/runner.py @@ -90,7 +90,7 @@ class BlockStateRunner(BlockProgressor): self.new_head_event.set() log.debug(f'new head {block}') if abs(block.timestamp-timestamp()) > 3: - log.warning(f'Blockchain {chain_id} time is off by {block.timestamp-timestamp():.1f}s') + log.info(f'Blockchain {chain_id} time is off by {block.timestamp-timestamp():.1f}s') if not self.running: break await async_yield()