Merge remote-tracking branch 'ungleich/master' into jobs-locking

This commit is contained in:
Darko Poljak 2017-08-13 12:27:57 +02:00
commit b6467e716e
1 changed files with 5 additions and 2 deletions

View File

@ -110,9 +110,12 @@ class Emulator(object):
"""Setup logging facility"""
if '__cdist_loglevel' in self.env:
level = int(self.env['__cdist_loglevel'])
try:
level = int(self.env['__cdist_loglevel'])
except:
level = logging.WARNING
else:
level = logging.OFF
level = logging.WARNING
logging.root.setLevel(level)
self.log = logging.getLogger(self.target_host[0])