LibJS: Replace a few dbg() with dbgln()

This commit is contained in:
Linus Groh 2020-10-04 15:44:40 +01:00 committed by Andreas Kling
commit 5de5af60c1
Notes: sideshowbarker 2024-07-19 02:03:51 +09:00
3 changed files with 11 additions and 11 deletions

View file

@ -331,7 +331,7 @@ MarkupGenerator::StyleType MarkupGenerator::style_type_for_token(Token token)
case TokenType::Identifier:
return StyleType::Identifier;
default:
dbg() << "Unknown style type for token " << token.name();
dbgln("Unknown style type for token {}", token.name());
ASSERT_NOT_REACHED();
}
}