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

Everywhere: Replace a bundle of dbg with dbgln.

These changes are arbitrarily divided into multiple commits to make it
easier to find potentially introduced bugs with git bisect.
This commit is contained in:
asynts 2021-01-11 13:04:22 +01:00 committed by Andreas Kling
parent 510030971b
commit a410bb8fd5
7 changed files with 28 additions and 29 deletions

View file

@ -780,7 +780,7 @@ Vector<Token> Lexer::lex()
commit_token(Token::Type::Identifier);
continue;
}
dbg() << "Unimplemented token character: " << ch;
dbgln("Unimplemented token character: {}", ch);
emit_token(Token::Type::Unknown);
}
return tokens;