Remove log spam
This commit is contained in:
parent
d19fbf005e
commit
1f7ca28647
@ -1,5 +1,4 @@
|
|||||||
# standard imports
|
# standard imports
|
||||||
import logging
|
|
||||||
import re
|
import re
|
||||||
import datetime
|
import datetime
|
||||||
|
|
||||||
@ -8,9 +7,6 @@ from chainqueue.cache import CacheTx
|
|||||||
from chainqueue.entry import QueueEntry
|
from chainqueue.entry import QueueEntry
|
||||||
|
|
||||||
|
|
||||||
logg = logging.getLogger(__name__)
|
|
||||||
|
|
||||||
|
|
||||||
def to_key(t, n, k):
|
def to_key(t, n, k):
|
||||||
return '{}_{}_{}'.format(t, n, k)
|
return '{}_{}_{}'.format(t, n, k)
|
||||||
|
|
||||||
@ -81,7 +77,6 @@ class Store:
|
|||||||
|
|
||||||
if threshold != None:
|
if threshold != None:
|
||||||
v = self.state_store.modified(ref)
|
v = self.state_store.modified(ref)
|
||||||
logg.debug('compare {} {}'.format(v, threshold))
|
|
||||||
if v > threshold:
|
if v > threshold:
|
||||||
continue
|
continue
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user