summaryrefslogtreecommitdiffstats
path: root/raul/Process.hpp
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2012-08-17 02:14:07 +0000
committerDavid Robillard <d@drobilla.net>2012-08-17 02:14:07 +0000
commit882245f41683924d0465b5afac2f8bb5c3786e60 (patch)
tree3220e84c90168eadaa7ccbaec06c1dc7ca1aacda /raul/Process.hpp
parent137a7fac329b7ca70babf00823efe431035a7657 (diff)
downloadraul-882245f41683924d0465b5afac2f8bb5c3786e60.tar.gz
raul-882245f41683924d0465b5afac2f8bb5c3786e60.tar.bz2
raul-882245f41683924d0465b5afac2f8bb5c3786e60.zip
Implement real logging system, LV2 log extension support, and purge evil/ugly/untranslatable C++ stream printing.
Remove coloured log stuff from Raul. git-svn-id: http://svn.drobilla.net/lad/trunk/raul@4717 a436a847-0d15-0410-975c-d299462d15a1
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();