From a782bbfdbb0a115e6b8bd583f22bfe16ee9fdace Mon Sep 17 00:00:00 2001 From: Cosimo Lupo Date: Thu, 11 Jan 2024 15:03:46 +0000 Subject: [PATCH] restore log message that got lost in #801 refactoring --- Lib/ufo2ft/_compilers/baseCompiler.py | 1 + 1 file changed, 1 insertion(+) diff --git a/Lib/ufo2ft/_compilers/baseCompiler.py b/Lib/ufo2ft/_compilers/baseCompiler.py index e28cd42c..4175cd0f 100644 --- a/Lib/ufo2ft/_compilers/baseCompiler.py +++ b/Lib/ufo2ft/_compilers/baseCompiler.py @@ -57,6 +57,7 @@ def compile(self, ufo): with self.timer("preprocess UFO"): glyphSet = self.preprocess(ufo) with self.timer("compile a basic TTF"): + self.logger.info("Building OpenType tables") font = self.compileOutlines(ufo, glyphSet) if self.layerName is None and not self.skipFeatureCompilation: self.compileFeatures(ufo, font, glyphSet=glyphSet)