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

LibHTML: Let's put debug output on the debugger stream

This commit is contained in:
Andreas Kling 2019-10-03 10:25:00 +02:00
parent 786494b62d
commit 9290117b77
3 changed files with 23 additions and 23 deletions

View file

@ -48,7 +48,7 @@ NonnullRefPtrVector<StyleRule> StyleResolver::collect_matching_rules(const Eleme
}
#ifdef HTML_DEBUG
printf("Rules matching Element{%p}\n", &element);
dbgprintf("Rules matching Element{%p}\n", &element);
for (auto& rule : matching_rules) {
dump_rule(rule);
}