summaryrefslogtreecommitdiffstats
path: root/raul/Process.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'raul/Process.hpp')
-rw-r--r--raul/Process.hpp4
1 files changed, 0 insertions, 4 deletions
diff --git a/raul/Process.hpp b/raul/Process.hpp
index 238e8c0..96ac831 100644
--- a/raul/Process.hpp
+++ b/raul/Process.hpp
@@ -24,7 +24,6 @@
#include <string>
#include "raul/Noncopyable.hpp"
-#include "raul/log.hpp"
namespace Raul {
@@ -47,9 +46,6 @@ public:
const std::string arguments = command.substr((command.find(" ") + 1));
- info << "Launching child process '" << executable << "' with arguments '"
- << arguments << "'" << std::endl;
-
// Use the same double fork() trick as JACK to prevent zombie children
const int err = fork();