diff options
author | David Robillard <d@drobilla.net> | 2012-05-10 06:24:07 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2012-05-10 06:24:07 +0000 |
commit | dd599c5663c6e5db8bdab0597935550c026d5f7b (patch) | |
tree | bf0298ba27f70f6562ef543d408c7d8bee2544ff /raul/Process.hpp | |
parent | 4eb9aa529c2b3c083c64886234ead8f06ff5f77e (diff) | |
download | raul-dd599c5663c6e5db8bdab0597935550c026d5f7b.tar.gz raul-dd599c5663c6e5db8bdab0597935550c026d5f7b.tar.bz2 raul-dd599c5663c6e5db8bdab0597935550c026d5f7b.zip |
Work towards translatable strings and a cleaner log interface.
git-svn-id: http://svn.drobilla.net/lad/trunk/raul@4338 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'raul/Process.hpp')
-rw-r--r-- | raul/Process.hpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/raul/Process.hpp b/raul/Process.hpp index 21e4f33..74065e2 100644 --- a/raul/Process.hpp +++ b/raul/Process.hpp @@ -22,7 +22,6 @@ #include <sys/time.h> #include <unistd.h> -#include <iostream> #include <string> #include "raul/Noncopyable.hpp" @@ -50,7 +49,7 @@ public: const std::string arguments = command.substr((command.find(" ") + 1)); info << "Launching child process '" << executable << "' with arguments '" - << arguments << "'" << std::endl; + << arguments << "'" << std::endl; // Use the same double fork() trick as JACK to prevent zombie children const int err = fork(); |