LibWeb: Put debug spam about unimplemented calc() expansion behind flag

This commit is contained in:
Andreas Kling 2023-05-06 16:07:51 +02:00
commit 3e62ab996d
Notes: sideshowbarker 2024-07-17 07:09:53 +09:00

View file

@ -815,7 +815,7 @@ bool StyleComputer::expand_unresolved_values(DOM::Element& element, StringView p
continue; continue;
} }
default: default:
dbgln("FIXME: Unimplemented calc() expansion: {}", calc_value->to_string()); dbgln_if(LIBWEB_CSS_DEBUG, "FIXME: Unimplemented calc() expansion: {}", calc_value->to_string());
break; break;
} }
} }