libpbd: do not use debug transmitter inside BaseUI::signal_new_request() to avoid recursion

This commit is contained in:
Paul Davis 2022-06-13 13:43:31 -06:00
parent 590b4165e8
commit 32b41037b5
1 changed files with 3 additions and 1 deletions

View File

@ -163,7 +163,9 @@ BaseUI::request_handler (Glib::IOCondition ioc)
void
BaseUI::signal_new_request ()
{
DEBUG_TRACE (DEBUG::EventLoop, string_compose ("%1: signal_new_request\n", event_loop_name()));
if ((DEBUG::EventLoop & PBD::debug_bits).any()) {
std::cout << "DEBUG::EventLoop: " << string_compose ("%1: signal_new_request\n", event_loop_name());
}
request_channel.wakeup ();
}