From f0dbd6c0855e76a87d97a1774f2e97a5b9211ae6 Mon Sep 17 00:00:00 2001 From: Colin Fletcher Date: Tue, 27 May 2014 11:23:47 +0100 Subject: 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. --- libs/ardour/export_handler.cc | 5 ----- 1 file changed, 5 deletions(-) (limited to 'libs/ardour') 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 ('s', session.path ())); subs.insert (std::pair ('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); } -- cgit v1.2.3