mirror of
https://github.com/SerenityOS/serenity.git
synced 2025-01-23 18:02:05 -05:00
Shell: Convert dbgprintf() => dbgln()
This commit is contained in:
parent
2d64ba7b9d
commit
d9bf4b4d41
1 changed files with 1 additions and 3 deletions
|
@ -124,9 +124,7 @@ namespace Shell::AST {
|
|||
|
||||
static inline void print_indented(const String& str, int indent)
|
||||
{
|
||||
for (auto i = 0; i < indent; ++i)
|
||||
dbgprintf(" ");
|
||||
dbgprintf("%s\n", str.characters());
|
||||
dbgln("{}{}", String::repeated(' ', indent * 2), str);
|
||||
}
|
||||
|
||||
static inline Optional<Position> merge_positions(const Optional<Position>& left, const Optional<Position>& right)
|
||||
|
|
Loading…
Add table
Reference in a new issue