1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-15 01:54:57 +00:00

LibWeb: Move "Stop parsing!" behind PARSER_DEBUG

This makes SerenityOS's IRC client a lot less chatty.
This commit is contained in:
Nico Weber 2020-07-06 10:57:16 -04:00 committed by Andreas Kling
parent d897940e02
commit e9d18e35d6

View file

@ -80,7 +80,9 @@ void HTMLDocumentParser::run(const URL& url)
process_using_the_rules_for(m_insertion_mode, token);
if (m_stop_parsing) {
#ifdef PARSER_DEBUG
dbg() << "Stop parsing! :^)";
#endif
break;
}
}