From eefc2d774cf80ea6b04573137bfb18cfcf33f607 Mon Sep 17 00:00:00 2001 From: Paul Davis Date: Tue, 26 Feb 2019 09:01:33 -0700 Subject: [PATCH] enhanced debug trace output --- libs/ardour/ltc_slave.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libs/ardour/ltc_slave.cc b/libs/ardour/ltc_slave.cc index fda712b0c9..4adeae2ca9 100644 --- a/libs/ardour/ltc_slave.cc +++ b/libs/ardour/ltc_slave.cc @@ -492,7 +492,7 @@ LTC_TransportMaster::process_ltc(samplepos_t const now) ltc_speed = 0; } - DEBUG_TRACE (DEBUG::LTC, string_compose ("LTC speed: %1\n", ltc_speed)); + DEBUG_TRACE (DEBUG::LTC, string_compose ("LTC speed: %1 (%2 in %3)\n", ltc_speed, (ltc_sample - current.position), (cur_timestamp - current.timestamp))); } DEBUG_TRACE (DEBUG::LTC, string_compose ("update current to %1 %2 %3\n", ltc_sample, cur_timestamp, ltc_speed)); current.update (ltc_sample, cur_timestamp, ltc_speed);