From a81714267622e6d7e598b1f698cdb915b5a8fffc Mon Sep 17 00:00:00 2001 From: Paul Davis Date: Tue, 29 Nov 2022 09:39:01 -0700 Subject: [PATCH] NO-OP: extend debug trace output in superclock_at (BBT_Time) --- 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 2a32ee8873..d695494ded 100644 --- a/libs/temporal/tempo.cc +++ b/libs/temporal/tempo.cc @@ -681,7 +681,7 @@ TempoMetric::bbt_at (timepos_t const & pos) const superclock_t TempoMetric::superclock_at (BBT_Time const & bbt) const { - DEBUG_TRACE (DEBUG::TemporalMap, string_compose ("get quarters for %1 = %2\n", bbt, _meter->quarters_at (bbt))); + DEBUG_TRACE (DEBUG::TemporalMap, string_compose ("get quarters for %1 = %2 using %3\n", bbt, _meter->quarters_at (bbt), *this)); return _tempo->superclock_at (_meter->quarters_at (bbt)); }