From 1c44a2f2cba63095d192e06165e25f03db426a09 Mon Sep 17 00:00:00 2001 From: Robbert van der Helm Date: Sun, 24 May 2020 14:55:09 +0200 Subject: [PATCH] Also filter audioMasterGetCurrentProcessLevel Some plugins call this every time they process audio. --- src/common/logging.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/common/logging.cpp b/src/common/logging.cpp index d8e9b892..5d373c31 100644 --- a/src/common/logging.cpp +++ b/src/common/logging.cpp @@ -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; }