mirror of
https://github.com/robbert-vdh/yabridge.git
synced 2026-06-09 22:02:10 +02:00
Filter out effProcessEvents on verbosity level 1
This commit is contained in:
@@ -8,6 +8,11 @@ Versioning](https://semver.org/spec/v2.0.0.html).
|
||||
|
||||
## [Unreleased]
|
||||
|
||||
### Changed
|
||||
|
||||
- `effProcessEvents` VST2 calls are now filtered out from the log when
|
||||
`YABRIDGE_DEBUG_LEVEL` is set to 1.
|
||||
|
||||
### Fixed
|
||||
|
||||
- Fixed an obscure issue with VST3 plugins crashing in **Ardour** on
|
||||
|
||||
@@ -557,7 +557,7 @@ bool Vst2Logger::should_filter_event(bool is_dispatch,
|
||||
// Filter out log messages related to these events by default since they are
|
||||
// called tens of times per second
|
||||
if ((is_dispatch && (opcode == effEditIdle || opcode == effGetTailSize ||
|
||||
opcode == effIdle)) ||
|
||||
opcode == effIdle || opcode == effProcessEvents)) ||
|
||||
(!is_dispatch && (opcode == audioMasterGetTime ||
|
||||
opcode == audioMasterGetCurrentProcessLevel))) {
|
||||
return true;
|
||||
|
||||
Reference in New Issue
Block a user