summaryrefslogtreecommitdiffstats
path: root/raul/Process.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'raul/Process.hpp')
-rw-r--r--raul/Process.hpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/raul/Process.hpp b/raul/Process.hpp
index 675f1d7..719a9d4 100644
--- a/raul/Process.hpp
+++ b/raul/Process.hpp
@@ -24,6 +24,7 @@
#include <sys/time.h>
#include <sys/resource.h>
#include <boost/utility.hpp>
+#include "raul/log.hpp"
namespace Raul {
@@ -47,7 +48,7 @@ public:
const std::string arguments = command.substr((command.find(" ") + 1));
- std::cerr << "Launching child process '" << executable << "' with arguments '"
+ info << "Launching child process '" << executable << "' with arguments '"
<< arguments << "'" << std::endl;
// Use the same double fork() trick as JACK to prevent zombie children