diff --git a/src/mt/process-list.cpp b/src/mt/process-list.cpp
index 8920659b23102a951e4c45b189f723c089c2404f..711e8dd1dd15d36023e7681758f1d97c4db92ee4 100644
--- a/src/mt/process-list.cpp
+++ b/src/mt/process-list.cpp
@@ -2,7 +2,6 @@
  * Author: O. Stasse, 2019
  * See LICENSE file in the root directory of this repository.
  */
-#include <iostream>
 #include <fstream>
 #include <sstream>
 #include <string>
@@ -95,8 +94,7 @@ void CPUData::ProcessLine(std::istringstream &aCPULine)
       percent_ += (double)( softirq_period_)/(double)(total_period_) * 100.0;
       percent_ += (double)( steal_period_)/(double)(total_period_) * 100.0;
       percent_ += (double)( iowait_period_)/(double)(total_period_) * 100.0;
-    }
-  std::cout << cpu_id_ << " " << percent_ << std::endl;  
+    }  
 }
 
 System::System()