Add graphs showing journeys/durations over last year
[harbour-pedalo.git] / src / statshourcongestion.cpp
index 1d049e7..4debac7 100644 (file)
@@ -1,5 +1,3 @@
-#include <QDebug>
-
 #include "statshourcongestion.h"
 
 #define LOWESTHOUR (7)
@@ -22,7 +20,6 @@ void StatsHourCongestion::update() {
     unsigned int count[24];
     int pos;
 
-    qDebug() << "Calculating values";
     barvalues.clear();
 
     for (pos = 0; pos < 24; pos++) {
@@ -62,6 +59,4 @@ void StatsHourCongestion::update() {
     }
 
     step = (maxval > 5.0) ? qRound(maxval / 5.0) : (maxval / 5.0);
-
-    qDebug() << "Calculated values";
 }