13
0

remove debug-only direct-to-output debug info that duplicates a DEBUG_TRACE msg

This commit is contained in:
Paul Davis 2022-05-21 16:38:36 -06:00
parent c4844b00e3
commit 5c8b7519c1

View File

@ -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);