1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-20 14:45:07 +00:00

Shell: Replace all dbg()'s with dbgln()

This commit is contained in:
AnotherTest 2020-12-06 20:51:40 +03:30 committed by Andreas Kling
parent 602d2ff856
commit 57728ef29f
3 changed files with 32 additions and 27 deletions

View file

@ -175,7 +175,7 @@ int main(int argc, char** argv)
}
if (command_to_run) {
dbgprintf("sh -c '%s'\n", command_to_run);
dbgln("sh -c '{}'\n", command_to_run);
shell->run_command(command_to_run);
return 0;
}