From 85a62195a2a82bb496f3736e1ec1ef12d1e5d4a4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marcin=20Zieli=C5=84ski?= Date: Thu, 22 Dec 2022 17:28:53 +0100 Subject: [PATCH] [MOS-859] Add missing font glyphs logging This facilitates text issues debugging --- module-gui/gui/core/RawFont.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/module-gui/gui/core/RawFont.cpp b/module-gui/gui/core/RawFont.cpp index 3b46849b402e3ef5435a65dcdec3360b47925636..fc6dd987eedf64bc5e5738c4a0380be6076ed883 100644 --- a/module-gui/gui/core/RawFont.cpp +++ b/module-gui/gui/core/RawFont.cpp @@ -142,6 +142,8 @@ namespace gui if (glyph != nullptr) { return glyph; } + + LOG_WARN("unsupported font glyph ID: %" PRIu32, glyph_id); return unsupported.get(); }