From 84b8eb10e65f16d47d9ffd3c4721f978b6862f97 Mon Sep 17 00:00:00 2001 From: lash Date: Sun, 1 May 2022 07:40:32 +0000 Subject: [PATCH] Remove spam logline --- chainqueue/store/fs.py | 2 +- setup.cfg | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/chainqueue/store/fs.py b/chainqueue/store/fs.py index 94b410d..3bb3a45 100644 --- a/chainqueue/store/fs.py +++ b/chainqueue/store/fs.py @@ -64,7 +64,7 @@ class CounterStore: v = f.read(8) self.count = int.from_bytes(v, byteorder='big') - logg.info('counter starts at {}'.format(self.count)) + logg.debug('counter starts at {}'.format(self.count)) f.seek(0) diff --git a/setup.cfg b/setup.cfg index c500ed2..06ac365 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,6 +1,6 @@ [metadata] name = chainqueue -version = 0.1.7 +version = 0.1.8 description = Generic blockchain transaction queue control author = Louis Holbrook author_email = dev@holbrook.no