From e515547d5a1b41e75876e023721e520e1ac710d9 Mon Sep 17 00:00:00 2001 From: Robbert van der Helm Date: Mon, 27 Apr 2020 18:56:14 +0200 Subject: [PATCH] Add a todo on another event to filter --- src/common/logging.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/common/logging.cpp b/src/common/logging.cpp index 1b8e815a..1821868a 100644 --- a/src/common/logging.cpp +++ b/src/common/logging.cpp @@ -255,6 +255,7 @@ bool Logger::should_filter_event(bool is_dispatch, int opcode) { // Filter out log messages related to these events by default since they are // called tens of times per second + // TODO: Figure out what opcode 52 is and filter that out as well if ((is_dispatch && opcode == effEditIdle) || (!is_dispatch && opcode == audioMasterGetTime)) { return true;