瀏覽代碼

Shell: Stop printing 'sh -c' commands

That's getting too spammy and too useless.
Ali Mohammad Pur 3 年之前
父節點
當前提交
bbce061a61
共有 1 個文件被更改,包括 0 次插入1 次删除
  1. 0 1
      Userland/Shell/main.cpp

+ 0 - 1
Userland/Shell/main.cpp

@@ -231,7 +231,6 @@ ErrorOr<int> 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;