From 3e62ab996d45c53860d3a11a33fe0eb2047a8888 Mon Sep 17 00:00:00 2001 From: Andreas Kling Date: Sat, 6 May 2023 16:07:51 +0200 Subject: [PATCH] LibWeb: Put debug spam about unimplemented calc() expansion behind flag --- Userland/Libraries/LibWeb/CSS/StyleComputer.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Userland/Libraries/LibWeb/CSS/StyleComputer.cpp b/Userland/Libraries/LibWeb/CSS/StyleComputer.cpp index 42220c43aa..02e065cd49 100644 --- a/Userland/Libraries/LibWeb/CSS/StyleComputer.cpp +++ b/Userland/Libraries/LibWeb/CSS/StyleComputer.cpp @@ -815,7 +815,7 @@ bool StyleComputer::expand_unresolved_values(DOM::Element& element, StringView p continue; } default: - dbgln("FIXME: Unimplemented calc() expansion: {}", calc_value->to_string()); + dbgln_if(LIBWEB_CSS_DEBUG, "FIXME: Unimplemented calc() expansion: {}", calc_value->to_string()); break; } }