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; } }