From 43a4e95843be7ef3214b0f5922b37c324ad01077 Mon Sep 17 00:00:00 2001 From: Arden Butterfield Date: Sat, 2 Sep 2023 19:18:21 -0700 Subject: [PATCH] remove debug line --- Source/PluginProcessor.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/Source/PluginProcessor.cpp b/Source/PluginProcessor.cpp index 6ed242f..b2a9a51 100644 --- a/Source/PluginProcessor.cpp +++ b/Source/PluginProcessor.cpp @@ -343,7 +343,6 @@ void MaimAudioProcessor::processBlock (juce::AudioBuffer& buffer, for (auto i = std::min(totalNumInputChannels,2); i < totalNumOutputChannels; ++i) buffer.clear (i, 0, buffer.getNumSamples()); - std::cout << totalNumInputChannels << " " << buffer.getNumChannels() << "\n"; if (totalNumInputChannels >= 2 && buffer.getNumChannels() >= 2) { processBlockStereo(buffer); } else if (totalNumInputChannels >= 1 && buffer.getNumChannels() >= 1) {