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; }