Skip to content

Commit

Permalink
Remove logging
Browse files Browse the repository at this point in the history
  • Loading branch information
medengineer committed Jan 18, 2024
1 parent 1718a17 commit 51242b4
Showing 1 changed file with 0 additions and 5 deletions.
5 changes: 0 additions & 5 deletions Source/MeanSpikeRateEditor.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -146,8 +146,6 @@ bool MeanSpikeRateEditor::getSpikeChannelEnabled(int index)

void MeanSpikeRateEditor::setSpikeChannelEnabled(int index, bool enabled)
{
LOGD("Setting spike channel ", String(index), " to ", enabled);
LOGD("Total number of spike channels: ", String(spikeChannelButtons.size()));
if (index < 0 || index >= spikeChannelButtons.size())
{
jassertfalse;
Expand Down Expand Up @@ -200,14 +198,11 @@ void MeanSpikeRateEditor::layoutChannelButtons()
auto processor = static_cast<MeanSpikeRate*>(getProcessor());

DataStream* stream = processor->getDataStream(getCurrentStream());

LOGD("Laying out channel buttons for stream " + stream->getName());

//only add spike channels that are associated with this stream
spikeChannelButtons.clear();
for (auto spikeChannel : stream->getSpikeChannels())
{
LOGD("Spike channel " + spikeChannel->getName(), " associated with stream: ", stream->getName());
spikeChannelButtons.add(makeNewChannelButton(spikeChannel));
spikeChannelButtons.getLast()->addListener(this);
}
Expand Down

0 comments on commit 51242b4

Please sign in to comment.