Move log-start-msg to function
This commit is contained in:
parent
239b621274
commit
61b33d5b72
@ -7,7 +7,7 @@ import dnslib as dns
|
||||
config = None
|
||||
def main(args):
|
||||
setupLogging(True)
|
||||
log.debug("Logging started")
|
||||
|
||||
|
||||
global config
|
||||
config = readConfig("/data/config.yml")
|
||||
@ -101,6 +101,7 @@ def setupLogging(verbose: bool):
|
||||
level = log.DEBUG
|
||||
|
||||
log.basicConfig(stream=sys.stdout, format=format, level=level)
|
||||
log.debug("Logging started")
|
||||
|
||||
def readConfig(file: str):
|
||||
log.debug(f"Reading config '{file}'..")
|
||||
|
Loading…
x
Reference in New Issue
Block a user