From 3c0a985d4d115d32ea6b0abf05a1b6dd03bbf450 Mon Sep 17 00:00:00 2001 From: sin-ack Date: Sun, 29 Dec 2024 04:56:17 +0000 Subject: [PATCH] font/freetype: Downgrade pixfmt conversion log to debug This is an expected occurrence with bitmap glyphs and causes unnecessary spam when using the terminal with one. --- src/font/face/freetype.zig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/font/face/freetype.zig b/src/font/face/freetype.zig index 0a822cbc7..d63cf99f1 100644 --- a/src/font/face/freetype.zig +++ b/src/font/face/freetype.zig @@ -376,7 +376,7 @@ pub const Face = struct { return error.UnsupportedPixelMode; }; - log.warn("converting from pixel_mode={} to atlas_format={}", .{ + log.debug("converting from pixel_mode={} to atlas_format={}", .{ bitmap_ft.pixel_mode, atlas.format, });