From 8deba5fdb7e58b9a4440a855fcf9c4e11faea90e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Ekl=C3=B6f?= Date: Wed, 20 Nov 2019 10:23:17 +0100 Subject: [PATCH] font: don't spam failures to lookup glyphs --- font.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/font.c b/font.c index 237f8fee..f1d01b50 100644 --- a/font.c +++ b/font.c @@ -441,8 +441,8 @@ glyph_for_wchar(const struct font *font, wchar_t wc, struct glyph *glyph) } } - LOG_WARN("%C: no glyph found (in neither the main font, " - "nor any fallback fonts)", wc); + LOG_DBG("%C: no glyph found (in neither the main font, " + "nor any fallback fonts)", wc); } err = FT_Load_Glyph(font->face, idx, font->load_flags);