From 1f3f179f61fd272dfff848e8348324ad25b61edc Mon Sep 17 00:00:00 2001 From: Simon Cozens Date: Thu, 7 Dec 2023 13:39:04 +0000 Subject: [PATCH] Log progress --- 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 ed991ca1..ff2d77a9 100644 --- a/Lib/ufo2ft/_compilers/baseCompiler.py +++ b/Lib/ufo2ft/_compilers/baseCompiler.py @@ -364,6 +364,7 @@ def compile_all_variable_features( for ttfSource, ufoSource in zip(vfDoc.sources, ufoDoc.sources): ufoSource.font = originalSources[ttfSource.name] defaultGlyphset = originalGlyphsets[ufoDoc.findDefault().name] + self.logger.info(f"Compiling variable features for {vfName}") self.compile_variable_features(ufoDoc, ttFont, defaultGlyphset) def compile_variable_features(self, designSpaceDoc, ttFont, glyphSet):