From 7864f33c3c847bbde7b559840059371b332219c8 Mon Sep 17 00:00:00 2001 From: Geoffrey Merck Date: Fri, 11 Mar 2022 17:51:55 +0100 Subject: [PATCH] #20 reduce verbosity --- Common/AudioUnit.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Common/AudioUnit.cpp b/Common/AudioUnit.cpp index 997acc9..db704a6 100644 --- a/Common/AudioUnit.cpp +++ b/Common/AudioUnit.cpp @@ -196,7 +196,7 @@ void CAudioUnit::clock(unsigned int ms) while (m_out < needed && m_out < m_data.size()) { CAMBEData* data = m_data[m_out]; m_out++; - CLog::logTrace("m_out %u, needed %u, m_data %u", m_out, needed, m_data.size()); + // CLog::logTrace("m_out %u, needed %u, m_data %u", m_out, needed, m_data.size()); m_handler->process(*data, DIR_INCOMING, AS_INFO); }