summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibGfx/FontDatabase.cpp
diff options
context:
space:
mode:
authorAndreas Kling <kling@serenityos.org>2021-09-23 13:12:59 +0200
committerAndreas Kling <kling@serenityos.org>2021-09-24 15:01:49 +0200
commit30979c1956285a53d2284145c0cefb57da26fb55 (patch)
treea2bb6731a59b4484e4aca22e99726762904b4880 /Userland/Libraries/LibGfx/FontDatabase.cpp
parentd7586aff53871d1235711f1e513a9ba6cee805f0 (diff)
downloadserenity-30979c1956285a53d2284145c0cefb57da26fb55.zip
LibGfx: Remove debug spam about not having some font installed
Diffstat (limited to 'Userland/Libraries/LibGfx/FontDatabase.cpp')
-rw-r--r--Userland/Libraries/LibGfx/FontDatabase.cpp1
1 files changed, 0 insertions, 1 deletions
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<Gfx::Font> 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;
}