From 540a15efa08d8eb17ae6e2222e1844e8ae007b99 Mon Sep 17 00:00:00 2001 From: Paul Davis Date: Tue, 24 May 2022 18:08:31 -0600 Subject: [PATCH] temporal: remove debug output --- libs/temporal/tempo.cc | 2 -- 1 file changed, 2 deletions(-) diff --git a/libs/temporal/tempo.cc b/libs/temporal/tempo.cc index 43cc93130c..bff63a3a64 100644 --- a/libs/temporal/tempo.cc +++ b/libs/temporal/tempo.cc @@ -873,14 +873,12 @@ TempoMap::core_add_tempo (TempoPoint* tp, bool& replaced) *((Tempo*)&(*t)) = *tp; delete tp; DEBUG_TRACE (DEBUG::TemporalMap, string_compose ("overwrote old tempo with %1\n", *tp)); - std::cerr << string_compose ("overwrote old tempo with %1\n", *tp); replaced = true; return &(*t); } } DEBUG_TRACE (DEBUG::TemporalMap, string_compose ("inserted tempo %1\n", *tp)); - std::cerr << string_compose ("inserted tempo %1\n", *tp); replaced = false; return &(* _tempos.insert (t, *tp));