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

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
parent 123f98201e
commit 5de5af60c1
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();
}
}