Fix getting loggers.
This commit is contained in:
parent
6acf6f64dc
commit
0c57b3083e
3 changed files with 10 additions and 16 deletions
|
@ -165,25 +165,20 @@ class Config(object):
|
|||
def commandline(cls, args):
|
||||
"""Configure remote system"""
|
||||
|
||||
# FIXME: Refactor relict - remove later
|
||||
log = logging.getLogger("cdist")
|
||||
if (args.parallel and args.parallel != 1) or args.jobs:
|
||||
if args.timestamp:
|
||||
cdist.log.setupTimestampingParallelLogging()
|
||||
else:
|
||||
cdist.log.setupParallelLogging()
|
||||
elif args.timestamp:
|
||||
cdist.log.setupTimestampingLogging()
|
||||
log = logging.getLogger("config")
|
||||
|
||||
# No new child process if only one host at a time.
|
||||
if args.parallel == 1:
|
||||
log.debug("Only 1 parallel process, doing it sequentially")
|
||||
args.parallel = 0
|
||||
|
||||
if args.parallel or args.jobs:
|
||||
# If parallel execution then also log process id
|
||||
if args.timestamp:
|
||||
cdist.log.setupTimestampingParallelLogging()
|
||||
else:
|
||||
cdist.log.setupParallelLogging()
|
||||
log = logging.getLogger("cdist")
|
||||
elif args.timestamp:
|
||||
cdist.log.setupTimestampingLogging()
|
||||
log = logging.getLogger("cdist")
|
||||
|
||||
if args.parallel:
|
||||
import signal
|
||||
|
||||
|
|
|
@ -47,7 +47,7 @@ class CdistType(object):
|
|||
|
||||
"""
|
||||
|
||||
log = logging.getLogger("cdist")
|
||||
log = logging.getLogger("cdist-type")
|
||||
|
||||
def __init__(self, base_path, name):
|
||||
self.base_path = base_path
|
||||
|
|
|
@ -69,8 +69,6 @@ if __name__ == "__main__":
|
|||
import re
|
||||
import os
|
||||
|
||||
log = logging.getLogger("cdist")
|
||||
|
||||
if re.match("__", os.path.basename(sys.argv[0])):
|
||||
import cdist.emulator
|
||||
emulator = cdist.emulator.Emulator(sys.argv)
|
||||
|
@ -82,6 +80,7 @@ if __name__ == "__main__":
|
|||
exit_code = 2
|
||||
|
||||
except cdist.Error as e:
|
||||
log = logging.getLogger("cdist")
|
||||
log.error(e)
|
||||
exit_code = 1
|
||||
|
||||
|
|
Loading…
Reference in a new issue