From 6db28ef08d26dec8aecc79b01f7e19b9c7f08956 Mon Sep 17 00:00:00 2001 From: Paul Davis Date: Sun, 24 Sep 2023 15:00:02 -0600 Subject: [PATCH] remove debug output --- libs/ardour/quantize.cc | 1 - 1 file changed, 1 deletion(-) diff --git a/libs/ardour/quantize.cc b/libs/ardour/quantize.cc index 75aa1ad4c0..52cf15d8b9 100644 --- a/libs/ardour/quantize.cc +++ b/libs/ardour/quantize.cc @@ -164,7 +164,6 @@ Quantize::operator () (std::shared_ptr model, if (_snap_start) { /* this is here because Beats intentionally does not have operator* (double) */ delta = Temporal::Beats::ticks (llrintf (delta.to_ticks()) * _strength); - std::cerr << "new start " << (*i)->time() + delta << " shift was " << delta << std::endl; cmd->change ((*i), MidiModel::NoteDiffCommand::StartTime, (*i)->time() + delta); } }