From bbce061a61921df3c1ca69321d13de9353b4b6c8 Mon Sep 17 00:00:00 2001 From: Ali Mohammad Pur Date: Sat, 6 Aug 2022 09:26:36 +0430 Subject: [PATCH] Shell: Stop printing 'sh -c' commands That's getting too spammy and too useless. --- Userland/Shell/main.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/Userland/Shell/main.cpp b/Userland/Shell/main.cpp index 90ec8716bc..35f5cf5615 100644 --- a/Userland/Shell/main.cpp +++ b/Userland/Shell/main.cpp @@ -231,7 +231,6 @@ ErrorOr serenity_main(Main::Arguments arguments) shell->set_local_variable("ARGV", adopt_ref(*new Shell::AST::ListValue(move(script_args)))); if (!command_to_run.is_empty()) { - dbgln("sh -c '{}'\n", command_to_run); auto result = shell->run_command(command_to_run); if (!keep_open) return result;