remove spam log

This commit is contained in:
tim
2024-10-22 23:50:49 -04:00
parent 05c1a121f6
commit 070913b848

View File

@@ -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):