diff --git a/Source/Main.cpp b/Source/Main.cpp
index 59785572079ae382abece694b0aba758cb54d5d9..06b914a81c012710482ac1065d0062b8369347e4 100644
--- a/Source/Main.cpp
+++ b/Source/Main.cpp
@@ -86,7 +86,7 @@ public:
     //==============================================================================
     void systemRequestedQuit()
     {
-        std::cout << "Quit requested" << std::endl;
+        //std::cout << "Quit requested" << std::endl;
         quit();
     }
 
diff --git a/Source/Processors/Editors/SpikeDetectorEditor.cpp b/Source/Processors/Editors/SpikeDetectorEditor.cpp
index ea12234f41201cd5fa2d485c2185db3c64241e25..ea81985c1ce16b689c5790860554ddd6ce8aedb0 100755
--- a/Source/Processors/Editors/SpikeDetectorEditor.cpp
+++ b/Source/Processors/Editors/SpikeDetectorEditor.cpp
@@ -184,7 +184,7 @@ void SpikeDetectorEditor::buttonEvent(Button* button)
             ElectrodeButton* eb = (ElectrodeButton*) button;
             int electrodeNum = eb->getChannelNum()-1;
 
-            std::cout << "Channel number: " << electrodeNum << std::endl;
+           // std::cout << "Channel number: " << electrodeNum << std::endl;
             Array<int> a;
             a.add(electrodeNum);
             channelSelector->setActiveChannels(a);
@@ -240,7 +240,7 @@ void SpikeDetectorEditor::buttonEvent(Button* button)
         // std::cout << "Plus button pressed!" << std::endl;
 
         int type = electrodeTypes->getSelectedId();
-        std::cout << type << std::endl;
+       // std::cout << type << std::endl;
         int nChans;
 
         switch (type)
@@ -340,7 +340,7 @@ void SpikeDetectorEditor::channelChanged(int chan)
 
     if (electrodeEditorButtons[0]->getToggleState()) // editing is active
     {
-        std::cout << "New channel: " << chan << std::endl;
+        //std::cout << "New channel: " << chan << std::endl;
 
         for (int i = 0; i < electrodeButtons.size(); i++)
         {
diff --git a/Source/Processors/RecordNode.cpp b/Source/Processors/RecordNode.cpp
index fcf0a299b1d21fe9c41275901636b73736c530c5..a8ee52c836c81eead48cba275fdba4ab1b02cce3 100755
--- a/Source/Processors/RecordNode.cpp
+++ b/Source/Processors/RecordNode.cpp
@@ -346,7 +346,7 @@ void RecordNode::setParameter(int parameterIndex, float newValue)
     {
 
         isRecording = true;
-        std::cout << "START RECORDING." << std::endl;
+       // std::cout << "START RECORDING." << std::endl;
 
         if (newDirectoryNeeded)
         {
@@ -388,7 +388,7 @@ void RecordNode::setParameter(int parameterIndex, float newValue)
     {
 
 
-        std::cout << "STOP RECORDING." << std::endl;
+       // std::cout << "STOP RECORDING." << std::endl;
 
         if (isRecording)
         {
diff --git a/Source/Processors/SpikeDisplayNode.cpp b/Source/Processors/SpikeDisplayNode.cpp
index f88ce2380cbe4c3f91b9d27abe9d010f72b85aee..6545cdb169424e7e660423ca5d84a5d0e49293d1 100755
--- a/Source/Processors/SpikeDisplayNode.cpp
+++ b/Source/Processors/SpikeDisplayNode.cpp
@@ -48,7 +48,7 @@ SpikeDisplayNode::~SpikeDisplayNode()
 
 AudioProcessorEditor* SpikeDisplayNode::createEditor()
 {
-    std::cout<<"Creating SpikeDisplayCanvas."<<std::endl;
+    //std::cout<<"Creating SpikeDisplayCanvas."<<std::endl;
 
     editor = new SpikeDisplayEditor(this);
     return editor;
diff --git a/Source/UI/SignalChainManager.cpp b/Source/UI/SignalChainManager.cpp
index 546c0af27cf32abbcba51ede67d3aae45f635662..bbdc33de03e1cf55b190437a2b8ea3c314800319 100755
--- a/Source/UI/SignalChainManager.cpp
+++ b/Source/UI/SignalChainManager.cpp
@@ -46,7 +46,7 @@ SignalChainManager::~SignalChainManager()
 void SignalChainManager::scrollUp()
 {
 
-    std::cout << "Scrolling up." << std::endl;
+    //std::cout << "Scrolling up." << std::endl;
 
     if (topTab > 0)
     {
@@ -60,7 +60,7 @@ void SignalChainManager::scrollUp()
 void SignalChainManager::scrollDown()
 {
 
-    std::cout << "Scrolling down." << std::endl;
+    //std::cout << "Scrolling down." << std::endl;
 
     if (topTab < signalChainArray.size()-4)
     {