From 6f66251a1267ad57e9a3f72a5688511b0dba15dd Mon Sep 17 00:00:00 2001 From: Carl Hetherington Date: Thu, 7 Jul 2022 00:09:09 +0200 Subject: [PATCH] Add some logging to the system font finder. --- src/lib/font_config.cc | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/src/lib/font_config.cc b/src/lib/font_config.cc index 5c9eebb3f..40b9770c7 100644 --- a/src/lib/font_config.cc +++ b/src/lib/font_config.cc @@ -20,6 +20,7 @@ #include "dcpomatic_assert.h" +#include "dcpomatic_log.h" #include "font_config.h" #include #include @@ -91,24 +92,35 @@ FontConfig::system_font_with_name(string name) { optional path; + LOG_GENERAL("Searching system for font %1", name); auto pattern = FcNameParse(reinterpret_cast(name.c_str())); auto object_set = FcObjectSetBuild(FC_FILE, nullptr); auto font_set = FcFontList(_config, pattern, object_set); if (font_set) { + LOG_GENERAL("%1 candidate fonts found", font_set->nfont); for (int i = 0; i < font_set->nfont; ++i) { auto font = font_set->fonts[i]; FcChar8* file; if (FcPatternGetString(font, FC_FILE, 0, &file) == FcResultMatch) { path = boost::filesystem::path(reinterpret_cast(file)); + LOG_GENERAL("Found %1", *path); break; } } FcFontSetDestroy(font_set); + } else { + LOG_GENERAL_NC("No candidate fonts found"); } FcObjectSetDestroy(object_set); FcPatternDestroy(pattern); + if (path) { + LOG_GENERAL("Searched system for font %1, found %2", name, *path); + } else { + LOG_GENERAL("Searched system for font %1; nothing found", name); + } + return path; } -- 2.30.2