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;
}