1
1
mirror of https://github.com/rsms/inter.git synced 2024-11-27 09:49:07 +03:00

fontbuild: increase logging level to WARNING

This commit is contained in:
Rasmus Andersson 2018-09-12 09:43:19 -07:00
parent bbefc90d4b
commit bac3fc4648

View File

@ -198,7 +198,7 @@ class Main(object):
def __init__(self): def __init__(self):
self.tmpdir = pjoin(BASEDIR,'build','tmp') self.tmpdir = pjoin(BASEDIR,'build','tmp')
self.quiet = False self.quiet = False
self.logLevelName = 'ERROR' self.logLevelName = 'WARNING'
def log(self, msg): def log(self, msg):
@ -258,8 +258,8 @@ class Main(object):
logging.basicConfig(level=logging.INFO) logging.basicConfig(level=logging.INFO)
self.logLevelName = 'INFO' self.logLevelName = 'INFO'
else: else:
logging.basicConfig(level=logging.ERROR) logging.basicConfig(level=logging.WARNING)
self.logLevelName = 'ERROR' self.logLevelName = 'WARNING'
if args.chdir: if args.chdir:
os.chdir(args.chdir) os.chdir(args.chdir)