diff --git a/i0mapmon.pro b/i0mapmon.pro
index 2ad1bd0c74919c283a1b24431d7327a7fecfcfab..95c62790aca14911d6775ee6a0dcd6bf04a9515b 100644
--- a/i0mapmon.pro
+++ b/i0mapmon.pro
@@ -5,7 +5,7 @@ include($${CUMBIA_ROOT}/include/quapps/quapps.pri)
 
 CONFIG += debug
 
-DEFINES -= QT_NO_DEBUG_OUTPUT
+# DEFINES -= QT_NO_DEBUG_OUTPUT
 
 # RESOURCES +=
 
diff --git a/src/i0mmonplot.cpp b/src/i0mmonplot.cpp
index bc4eecc84e73e41688ca83a0d71e2df05fc8f271..8a0892b4891607d35d25cc5051c3759d37bae96b 100644
--- a/src/i0mmonplot.cpp
+++ b/src/i0mmonplot.cpp
@@ -75,7 +75,6 @@ bool I0MMonPlot::yAutoScale() const {
 }
 void I0MMonPlot::setSources(const QString &x, const QString &y, const QMap<int, double> lambdamap, int nsamples)
 {
-    qDebug() << __PRETTY_FUNCTION__ << lambdamap;
     m_multiread_plu_i->unsetSources();
     foreach(const QString& cn, m_curvesymap.keys())
         removeCurve(cn);
@@ -100,7 +99,6 @@ void I0MMonPlot::setSources(const QString &x, const QString &y, const QMap<int,
         }
         m_curvesymap[cuna] = m_symstyles[(lambdai-1) % m_symstyles.size()];
     }
-    qDebug() << __PRETTY_FUNCTION__ << "settings sources: x " <<  x << " y " << y  << "time mode" << m_time_mode;
     if(m_time_mode) {
         if(m_multiread_plu_i)
             m_multiread_plu_i->insertSource(y, 0);
@@ -114,9 +112,6 @@ void I0MMonPlot::setSources(const QString &x, const QString &y, const QMap<int,
         }
     }
     updateLegend();
-    printf("I0MMonPlot::setSources curvesSize %d\n", curves().size());
-    foreach(QwtPlotCurve *c, curves())
-        printf("- %s\n", qstoc(c->title().text()));
 }
 
 void I0MMonPlot::setYBounds(double ymi, double yma) {