1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 11:58:12 +00:00

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
parent f09391dd7f
commit 3e62ab996d

View file

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