From 30979c1956285a53d2284145c0cefb57da26fb55 Mon Sep 17 00:00:00 2001 From: Andreas Kling Date: Thu, 23 Sep 2021 13:12:59 +0200 Subject: LibGfx: Remove debug spam about not having some font installed --- Userland/Libraries/LibGfx/FontDatabase.cpp | 1 - 1 file changed, 1 deletion(-) (limited to 'Userland/Libraries/LibGfx/FontDatabase.cpp') diff --git a/Userland/Libraries/LibGfx/FontDatabase.cpp b/Userland/Libraries/LibGfx/FontDatabase.cpp index d866133238..70e379390a 100644 --- a/Userland/Libraries/LibGfx/FontDatabase.cpp +++ b/Userland/Libraries/LibGfx/FontDatabase.cpp @@ -159,7 +159,6 @@ RefPtr FontDatabase::get(const String& family, unsigned size, unsigne if (typeface->family() == family && typeface->weight() == weight) return typeface->get_font(size); } - dbgln("Failed to get font: '{} {} {}'", family, size, weight); return nullptr; } -- cgit v1.2.3