From 070913b848ac975f0df008455c67b68ae5050180 Mon Sep 17 00:00:00 2001 From: tim Date: Tue, 22 Oct 2024 23:50:49 -0400 Subject: [PATCH] remove spam log --- src/dexorder/base/chain.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/dexorder/base/chain.py b/src/dexorder/base/chain.py index d867966..682c7a7 100644 --- a/src/dexorder/base/chain.py +++ b/src/dexorder/base/chain.py @@ -72,7 +72,7 @@ class BlockClock (Clock): def update(self, block_timestamp: int): now = datetime.now().timestamp() self.adjustment = block_timestamp - now - logging.getLogger(__name__).debug(f'blocktime {datetime.fromtimestamp(block_timestamp,tz=timezone.utc)} {block_timestamp} - now {now} = {self.adjustment}') + # logging.getLogger(__name__).debug(f'blocktime {datetime.fromtimestamp(block_timestamp,tz=timezone.utc)} {block_timestamp} - now {now} = {self.adjustment}') @property def timestamp(self):