From 8e07e00f18a938a1645b9e42ff3f2e4ee7b17fa4 Mon Sep 17 00:00:00 2001 From: Maxime Coste Date: Wed, 27 Feb 2013 21:31:48 +0100 Subject: [PATCH] ShellManager: remove unneeded end of lines when writing stderr --- src/shell_manager.cc | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/shell_manager.cc b/src/shell_manager.cc index 5a6e48a9..31a9d4c2 100644 --- a/src/shell_manager.cc +++ b/src/shell_manager.cc @@ -65,9 +65,7 @@ String ShellManager::pipe(const String& input, } close(error_pipe[0]); if (not errorout.empty()) - { - write_debug("\nshell stderr: <<<\n" + errorout + ">>>\n"); - } + write_debug("shell stderr: <<<\n" + errorout + ">>>"); waitpid(pid, NULL, 0); }