remove debug output

This commit is contained in:
Paul Davis 2014-09-23 10:49:14 -04:00
parent 0472453d94
commit 7675b88b02

View file

@ -4516,7 +4516,6 @@ Editor::set_loop_range (framepos_t start, framepos_t end, string cmd)
Location* tll;
if ((tll = transport_loop_location()) == 0) {
cerr << "Set loop with new loc\n";
Location* loc = new Location (*_session, start, end, _("Loop"), Location::IsAutoLoop);
XMLNode &before = _session->locations()->get_state();
_session->locations()->add (loc, true);
@ -4524,7 +4523,6 @@ Editor::set_loop_range (framepos_t start, framepos_t end, string cmd)
XMLNode &after = _session->locations()->get_state();
_session->add_command (new MementoCommand<Locations>(*(_session->locations()), &before, &after));
} else {
cerr << "Set loop with existing loc " << tll << endl;
XMLNode &before = tll->get_state();
tll->set_hidden (false, this);
tll->set (start, end);