From 73f41a4d3b9d7ed225693be7bad18f3e7bbbfc40 Mon Sep 17 00:00:00 2001 From: Paul Davis Date: Wed, 12 Apr 2023 10:38:57 -0600 Subject: [PATCH] remove debug output --- gtk2_ardour/editor_ops.cc | 4 ---- 1 file changed, 4 deletions(-) diff --git a/gtk2_ardour/editor_ops.cc b/gtk2_ardour/editor_ops.cc index d03805ba5a..f5201c6987 100644 --- a/gtk2_ardour/editor_ops.cc +++ b/gtk2_ardour/editor_ops.cc @@ -9706,8 +9706,6 @@ Editor::do_ripple (std::shared_ptr target_playlist, timepos_t const & for (auto & p : playlists) { - std::cerr << "ripple " << p->name() << " @ " << p << std::endl; - /* exclude list is only for the target */ if (p == target_playlist) { @@ -9719,11 +9717,9 @@ Editor::do_ripple (std::shared_ptr target_playlist, timepos_t const & */ if (add_to_command) { - std::cerr << "\tatc\n"; p->rdiff_and_add_command (_session); } } else if (affected_pls.find (p) == affected_pls.end ()) { - std::cerr << "\trac\n"; p->clear_changes (); p->clear_owned_changes (); p->ripple (at, distance, 0);