From 5c8b7519c1ba2f4234026b3967be5bddd083828b Mon Sep 17 00:00:00 2001 From: Paul Davis Date: Sat, 21 May 2022 16:38:36 -0600 Subject: [PATCH] remove debug-only direct-to-output debug info that duplicates a DEBUG_TRACE msg --- libs/temporal/tempo.cc | 6 ------ 1 file changed, 6 deletions(-) diff --git a/libs/temporal/tempo.cc b/libs/temporal/tempo.cc index 6bc473ab01..1c6556fbd1 100644 --- a/libs/temporal/tempo.cc +++ b/libs/temporal/tempo.cc @@ -570,12 +570,6 @@ TempoPoint::quarters_at_superclock (superclock_t sc) const Tempo::superbeats_to_beats_ticks (superbeats, b, t); -#ifndef NDEBUG - if (sc < _sclock) { - std::cout << string_compose ("%8 => \nsc %1 delta %9 = %2 secs rem = %3 rem snotes %4 sbeats = %5 => %6 : %7\n", sc, whole_seconds, remainder, supernotes, superbeats, b , t, *this, sc_delta); - } -#endif - DEBUG_TRACE (DEBUG::TemporalMap, string_compose ("%8 => \nsc %1 delta %9 = %2 secs rem = %3 rem snotes %4 sbeats = %5 => %6 : %7\n", sc, whole_seconds, remainder, supernotes, superbeats, b , t, *this, sc_delta)); return _quarters + Beats (b, t);