diff --git a/src/common/logging/clap.cpp b/src/common/logging/clap.cpp index 82685213..41ca6e1f 100644 --- a/src/common/logging/clap.cpp +++ b/src/common/logging/clap.cpp @@ -813,7 +813,10 @@ void ClapLogger::log_response( log_response_base(is_host_plugin, [&](auto& message) { if (response.result) { message << "true, name << "\">"; + << response.result->name + << "\", id = " << response.result->id + << ", channel_count = " << response.result->channel_count + << ">"; } else { message << "false"; } @@ -825,8 +828,9 @@ void ClapLogger::log_response( const clap::ext::audio_ports_config::plugin::GetResponse& response) { log_response_base(is_host_plugin, [&](auto& message) { if (response.result) { - message << "true, name << "\">"; + message << "true, name + << "\", id = " << response.result->id << ">"; } else { message << "false"; }