(trivial) logging "verbosity_filter" was renamed to "LOGGING_SHORTCUT"

This commit is contained in:
SomberNight 2019-10-30 03:24:26 +01:00
parent 75902f8e35
commit ccccaf099f
No known key found for this signature in database
GPG key ID: B33B5F232C6271E9

View file

@ -135,7 +135,7 @@ class SweepStore(SqlDB):
class LNWatcher(AddressSynchronizer):
verbosity_filter = 'W'
LOGGING_SHORTCUT = 'W'
def __init__(self, network: 'Network'):
AddressSynchronizer.__init__(self, JsonDB({}, manual_upgrades=False))
@ -247,7 +247,7 @@ class LNWatcher(AddressSynchronizer):
class WatchTower(LNWatcher):
verbosity_filter = 'W'
LOGGING_SHORTCUT = 'W'
def __init__(self, network):
LNWatcher.__init__(self, network)