From bcb865c23542763db5ef8d72a8ea7e7a95a5073d Mon Sep 17 00:00:00 2001 From: Paul Davis Date: Tue, 12 Jan 2016 22:10:23 -0500 Subject: [PATCH] improved debug trace messages from BaseUI class --- libs/pbd/base_ui.cc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/libs/pbd/base_ui.cc b/libs/pbd/base_ui.cc index c56fb8f4fe..d303d880c9 100644 --- a/libs/pbd/base_ui.cc +++ b/libs/pbd/base_ui.cc @@ -137,7 +137,7 @@ BaseUI::request_handler (Glib::IOCondition ioc) /* handle requests */ - DEBUG_TRACE (DEBUG::EventLoop, "BaseUI::request_handler\n"); + DEBUG_TRACE (DEBUG::EventLoop, string_compose ("%1: request handler\n", event_loop_name())); handle_ui_requests (); } @@ -147,7 +147,7 @@ BaseUI::request_handler (Glib::IOCondition ioc) void BaseUI::signal_new_request () { - DEBUG_TRACE (DEBUG::EventLoop, "BaseUI::signal_new_request\n"); + DEBUG_TRACE (DEBUG::EventLoop, string_compose ("%1: signal_new_request\n", event_loop_name())); request_channel.wakeup (); } @@ -157,6 +157,6 @@ BaseUI::signal_new_request () void BaseUI::attach_request_source () { - DEBUG_TRACE (DEBUG::EventLoop, "BaseUI::attach_request_source\n"); + DEBUG_TRACE (DEBUG::EventLoop, string_compose ("%1: attach request source\n", event_loop_name())); request_channel.attach (m_context); }