summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRasmus Andersson <rasmus@notion.se>2018-09-12 19:43:19 +0300
committerRasmus Andersson <rasmus@notion.se>2018-09-12 19:43:19 +0300
commit56abd084c4dcc672de802bae434ccb00e9df3cb5 (patch)
tree25878d6d249f5ccdee8ce36b81203a078818c942
parent041342d1996c1f9ec71eafa3d5e9f9276367b128 (diff)
downloadinter-56abd084c4dcc672de802bae434ccb00e9df3cb5.tar.xz
fontbuild: increase logging level to WARNING
-rwxr-xr-xmisc/fontbuild6
1 files changed, 3 insertions, 3 deletions
diff --git a/misc/fontbuild b/misc/fontbuild
index 7a327554f..4ca3f60ba 100755
--- a/misc/fontbuild
+++ b/misc/fontbuild
@@ -198,7 +198,7 @@ class Main(object):
def __init__(self):
self.tmpdir = pjoin(BASEDIR,'build','tmp')
self.quiet = False
- self.logLevelName = 'ERROR'
+ self.logLevelName = 'WARNING'
def log(self, msg):
@@ -258,8 +258,8 @@ class Main(object):
logging.basicConfig(level=logging.INFO)
self.logLevelName = 'INFO'
else:
- logging.basicConfig(level=logging.ERROR)
- self.logLevelName = 'ERROR'
+ logging.basicConfig(level=logging.WARNING)
+ self.logLevelName = 'WARNING'
if args.chdir:
os.chdir(args.chdir)