remove debug output from system_exec

remove the debug output from pbd/system_exec: it's of no further use, and
also breaks optimised builds.
This commit is contained in:
Colin Fletcher 2014-05-19 22:48:28 +01:00
parent 95ccbc452f
commit bc8ccea212

View file

@ -268,11 +268,6 @@ SystemExec::make_argp_escaped(std::string command, const std::map<char, std::str
char *p = argp[0];
n = 0;
do {
std::cerr << "argv[" << n << "] == \"" << p << "\"" << std::endl;
p = argp[n++];
} while (p);
}
SystemExec::~SystemExec ()