From 146b432c51a67d33b26125511144623e4cdc7988 Mon Sep 17 00:00:00 2001 From: Paul Davis Date: Tue, 29 Dec 2020 19:27:47 -0700 Subject: [PATCH] temporal: extend debug output --- libs/temporal/tempo.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libs/temporal/tempo.cc b/libs/temporal/tempo.cc index 8f83924ae6..8dbf789f77 100644 --- a/libs/temporal/tempo.cc +++ b/libs/temporal/tempo.cc @@ -512,7 +512,7 @@ TempoPoint::quarters_at_superclock (superclock_t sc) const Tempo::superbeats_to_beats_ticks (superbeats, b, t); - DEBUG_TRACE (DEBUG::TemporalMap, string_compose ("%7 => \nsc %1 = %2 secs rem = %3 rem sbeats = %4 => %5 : %6\n", sc, whole_seconds, remainder, superbeats, b , t, *this)); + DEBUG_TRACE (DEBUG::TemporalMap, string_compose ("%8 => \nsc %1 = %2 secs rem = %3 rem snotes %4 sbeats = %5 => %6 : %7\n", sc, whole_seconds, remainder, supernotes, superbeats, b , t, *this)); return Beats (b, t); }