Also filter audioMasterGetCurrentProcessLevel

Some plugins call this every time they process audio.
This commit is contained in:
Robbert van der Helm
2020-05-24 14:55:09 +02:00
parent 2e68ade2a3
commit 1c44a2f2cb
+2 -1
View File
@@ -306,7 +306,8 @@ bool Logger::should_filter_event(bool is_dispatch, int opcode) {
// called tens of times per second
// TODO: Figure out what opcode 52 is
if ((is_dispatch && (opcode == effEditIdle || opcode == 52)) ||
(!is_dispatch && opcode == audioMasterGetTime)) {
(!is_dispatch && (opcode == audioMasterGetTime ||
opcode == audioMasterGetCurrentProcessLevel))) {
return true;
}