diff --git a/gtk2_ardour/editor.cc b/gtk2_ardour/editor.cc index 99ffacf80c..5c40cce412 100644 --- a/gtk2_ardour/editor.cc +++ b/gtk2_ardour/editor.cc @@ -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(*(_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);