ShellManager: remove unneeded end of lines when writing stderr

This commit is contained in:
Maxime Coste 2013-02-27 21:31:48 +01:00
parent 72531f2df0
commit 8e07e00f18

View File

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