diff --git a/CHANGELOG.md b/CHANGELOG.md index 77605ebf..aa3c1679 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -118,6 +118,7 @@ Versioning](https://semver.org/spec/v2.0.0.html). in _SWAM Cello_ is now been fixed without requiring any manual compatibility options. - Fixed the Wine version detection when using a custom `WINELOADER`. +- Fixed incorrect logging output for cached VST3 function calls. ## [3.1.0] - 2021-04-15 diff --git a/src/plugin/bridges/vst3-impls/plugin-proxy.cpp b/src/plugin/bridges/vst3-impls/plugin-proxy.cpp index a0c92515..60218079 100644 --- a/src/plugin/bridges/vst3-impls/plugin-proxy.cpp +++ b/src/plugin/bridges/vst3-impls/plugin-proxy.cpp @@ -293,7 +293,7 @@ Vst3PluginProxyImpl::getBusInfo(Steinberg::Vst::MediaType type, bridge.logger.log_request(true, request); if (log_response) { bridge.logger.log_response( - true, + false, YaComponent::GetBusInfo::Response{ .result = Steinberg::kResultOk, .bus = it->second}, true);