summaryrefslogtreecommitdiff
path: root/libs/ardour/export_handler.cc
diff options
context:
space:
mode:
authorColin Fletcher <colin.m.fletcher@googlemail.com>2014-05-27 11:23:47 +0100
committerColin Fletcher <colin.m.fletcher@googlemail.com>2014-06-12 23:20:05 +0100
commitf0dbd6c0855e76a87d97a1774f2e97a5b9211ae6 (patch)
tree77e674a99948d374712f75e7edcac5d7d5469627 /libs/ardour/export_handler.cc
parent70308f51747b5beeff99dec9f10490080f00b0c2 (diff)
Export dialog: tidy code, & remove some superfluous debug output
Remove some debug output, tidy up a few whitespace inconsistencies, use DEBUG::Soundcloud in one more place, and zap a couple of unused variables.
Diffstat (limited to 'libs/ardour/export_handler.cc')
-rw-r--r--libs/ardour/export_handler.cc5
1 files changed, 0 insertions, 5 deletions
diff --git a/libs/ardour/export_handler.cc b/libs/ardour/export_handler.cc
index 4368d54430..e706522aa9 100644
--- a/libs/ardour/export_handler.cc
+++ b/libs/ardour/export_handler.cc
@@ -328,20 +328,15 @@ ExportHandler::finish_timespan ()
subs.insert (std::pair<char, std::string> ('s', session.path ()));
subs.insert (std::pair<char, std::string> ('n', session.name ()));
-
- std::cerr << "running command: " << fmt->command() << "..." << std::endl;
ARDOUR::SystemExec *se = new ARDOUR::SystemExec(fmt->command(), subs);
se->ReadStdout.connect_same_thread(command_connection, boost::bind(&ExportHandler::command_output, this, _1, _2));
if (se->start (2) == 0) {
// successfully started
- std::cerr << "started!" << std::endl;
while (se->is_running ()) {
// wait for system exec to terminate
- // std::cerr << "waiting..." << std::endl;
Glib::usleep (1000);
}
}
- std::cerr << "done! deleting..." << std::endl;
delete (se);
}