Don't serialize input output info for IComponent::getRoutingInfo

Yes, input output info.
This commit is contained in:
Robbert van der Helm
2021-02-12 19:24:04 +01:00
parent 67091bc13c
commit 4e4ed3a6b4
4 changed files with 17 additions and 32 deletions
+3 -9
View File
@@ -1086,9 +1086,7 @@ bool Vst3Logger::log_request(bool is_host_vst,
<< request.instance_id
<< ": IComponent::getRoutingInfo(inInfo = <RoutingInfo& for bus "
<< request.in_info.busIndex << " and channel "
<< request.in_info.channel << ">, outInfo = <RoutingInfo& for bus "
<< request.out_info.busIndex << " and channel "
<< request.out_info.channel << ">)";
<< request.in_info.channel << ">, &outInfo)";
});
}
@@ -1804,12 +1802,8 @@ void Vst3Logger::log_response(
log_response_base(is_host_vst, [&](auto& message) {
message << response.result.string();
if (response.result == Steinberg::kResultOk) {
message << ", <RoutingInfo& for bus "
<< response.updated_in_info.busIndex << " and channel "
<< response.updated_in_info.channel
<< ", <RoutingInfo& for bus "
<< response.updated_out_info.busIndex << " and channel "
<< response.updated_out_info.channel << ">";
message << ", <RoutingInfo& for bus " << response.out_info.busIndex
<< " and channel " << response.out_info.channel << ">";
}
});
}