amend d814acb - SystemExec/Export debugging

This commit is contained in:
Robin Gareus 2016-02-13 01:39:41 +01:00
parent d814acbb8f
commit 108528b63d
3 changed files with 14 additions and 14 deletions

View file

@ -355,7 +355,7 @@ ExportHandler::finish_timespan ()
subs.insert (std::pair<char, std::string> ('n', session.name ()));
ARDOUR::SystemExec *se = new ARDOUR::SystemExec(fmt->command(), subs);
info << "Post-export command line : {" << se->GetString() << "}" << endmsg;
info << "Post-export command line : {" << se->to_s () << "}" << endmsg;
se->ReadStdout.connect_same_thread(command_connection, boost::bind(&ExportHandler::command_output, this, _1, _2));
int ret = se->start (2);
if (ret == 0) {