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
commit 9290117b77
Notes: sideshowbarker 2024-07-19 11:50:08 +09:00
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);
}