diff options
author | Andreas Kling <kling@serenityos.org> | 2021-09-23 13:12:59 +0200 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2021-09-24 15:01:49 +0200 |
commit | 30979c1956285a53d2284145c0cefb57da26fb55 (patch) | |
tree | a2bb6731a59b4484e4aca22e99726762904b4880 /Userland/Libraries/LibGfx/FontDatabase.cpp | |
parent | d7586aff53871d1235711f1e513a9ba6cee805f0 (diff) | |
download | serenity-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.cpp | 1 |
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; } |