Also filter out the event with opcode 52

Not sure what this is, but it's called by Bitwig every time a buffer is
being processed.
This commit is contained in:
Robbert van der Helm
2020-04-28 12:04:09 +02:00
parent 8adb944445
commit 641351d525
3 changed files with 10 additions and 9 deletions
+5 -5
View File
@@ -149,12 +149,12 @@ variables:
from the Wine process and some basic information such as the plugin being
loaded and the wineprefix being used.
- A value of `1` will log information about most events and function calls
being sent between the VST host and the plugin. This filters out the
`effEditIdle()` and `audioMasterGetTime()` calls since those are sent tens
being sent between the VST host and the plugin. This filters out some events
such as `effEditIdle()` and `audioMasterGetTime()` since those are sent tens
of times per second by for every plugin.
- A value of `2` will cause all of the events to be logged, including
`effEditIdle()` and `audioMasterGettime()`. This can be very verbose but it
can be crucial for debugging plugin-specific problems.
- A value of `2` will cause all of the events to be logged, including the
events mentioned above. This can be very verbose but it can be crucial for
debugging plugin-specific problems.
More detailed information about these levels can be found in
`src/common/logging.h`.