From e76b26acf0ec93e17595743f66ba2d4da6bd628f Mon Sep 17 00:00:00 2001 From: Paul Davis Date: Tue, 31 Jan 2023 18:38:02 -0700 Subject: [PATCH] triggerbox: disambiguate otherwise identical DEBUG_TRACE messages --- libs/ardour/triggerbox.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libs/ardour/triggerbox.cc b/libs/ardour/triggerbox.cc index 2f542929fa..adceb15b96 100644 --- a/libs/ardour/triggerbox.cc +++ b/libs/ardour/triggerbox.cc @@ -4057,7 +4057,7 @@ TriggerBox::handle_stopped_trigger (BufferSet& bufs, pframes_t dest_offset) } else { _currently_playing = 0; PropertyChanged (Properties::currently_playing); - DEBUG_TRACE (DEBUG::Triggers, "currently playing was stopped, but stop_all was set, leaving nf loop\n"); + DEBUG_TRACE (DEBUG::Triggers, "currently playing was stopped, but stop_all was set #1, leaving nf loop\n"); /* leave nframes loop */ return 1; } @@ -4391,7 +4391,7 @@ TriggerBox::run (BufferSet& bufs, samplepos_t start_sample, samplepos_t end_samp _currently_playing = 0; PropertyChanged (Properties::currently_playing); - DEBUG_TRACE (DEBUG::Triggers, "currently playing was stopped, but stop_all was set, leaving nf loop\n"); + DEBUG_TRACE (DEBUG::Triggers, "currently playing was stopped, but stop_all was set #2, leaving nf loop\n"); /* leave nframes loop */ break; }