diff --git a/Framework/MDAlgorithms/src/IntegratePeaksMD2.cpp b/Framework/MDAlgorithms/src/IntegratePeaksMD2.cpp
index 137718f25100b457c6964b17d4e551d60c88bd78..cf68bd0baca558e38200b2660ceda574de9067b2 100644
--- a/Framework/MDAlgorithms/src/IntegratePeaksMD2.cpp
+++ b/Framework/MDAlgorithms/src/IntegratePeaksMD2.cpp
@@ -522,25 +522,20 @@ void IntegratePeaksMD2::integrate(typename MDEventWorkspace<MDE, nd>::sptr ws) {
 
         IFunction_sptr ifun = fitAlgorithm->getProperty("Function");
         if (i == 0) {
+          out << std::setw(20) << "spectrum" << " ";
           for (size_t j = 0; j < ifun->nParams(); ++j)
             out << std::setw(20) << ifun->parameterName(j) << " ";
+          out << std::setw(20) << "chi2" << " ";
           out << "\n";
         }
-        out << std::setw(20) << i << "\n";
+        out << std::setw(20) << i << " ";
         for (size_t j = 0; j < ifun->nParams(); ++j) {
           out << std::setw(20) << std::fixed << std::setprecision(10)
               << ifun->getParameter(j) << " ";
         }
-        out << "\n";
-
-        /*double chi2 = fitAlgorithm->getProperty("OutputChi2overDoF");
-        if (chi2 > 10.0) {
-          if (replaceIntensity) {
-            p.setIntensity(0.0);
-            p.setSigmaIntensity(0.0);
-          }
-          continue;
-        }*/
+        double chi2 = fitAlgorithm->getProperty("OutputChi2overDoF");
+        out << std::setw(20) << std::fixed << std::setprecision(10) << chi2 << "\n";
+
         boost::shared_ptr<const CompositeFunction> fun =
             boost::dynamic_pointer_cast<const CompositeFunction>(ifun);