diff --git a/Code/Mantid/Framework/Kernel/src/ConfigService.cpp b/Code/Mantid/Framework/Kernel/src/ConfigService.cpp
index 782303ad676097af31f6c588b139b80c5ce6c5e8..3ad4f3f33edfb6bfc905c1686db70cb1057e6873 100644
--- a/Code/Mantid/Framework/Kernel/src/ConfigService.cpp
+++ b/Code/Mantid/Framework/Kernel/src/ConfigService.cpp
@@ -1097,7 +1097,6 @@ void ConfigServiceImpl::setString(const std::string & key, const std::string & v
   {
     old = "";
   }
-  std::cout << "ConfigServiceImpl::setString(" << key << ", " << value << ") old = " << old << std::endl; // REMOVE
 
   //Ensure we keep a correct full path
   std::map<std::string, bool>::const_iterator itr = m_ConfigPaths.find(key);
@@ -1139,7 +1138,6 @@ void ConfigServiceImpl::setString(const std::string & key, const std::string & v
         return;
     }
 
-    std::cout << "     updating value" << std::endl; // REMOVE
     m_notificationCenter.postNotification(new ValueChanged(key, value, old));
     m_changed_keys.insert(key);
   }