From a83ff5a36a3f9e612f57eabd058640b3d2e18e37 Mon Sep 17 00:00:00 2001 From: Robbert van der Helm Date: Sun, 2 May 2021 15:47:11 +0200 Subject: [PATCH] Fix wrong direction in cached VST3 call logging --- CHANGELOG.md | 1 + src/plugin/bridges/vst3-impls/plugin-proxy.cpp | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) 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);