diff --git a/daemon.py b/daemon.py index a14a39f60..e0635f315 100644 --- a/daemon.py +++ b/daemon.py @@ -12704,7 +12704,6 @@ class PubServer(BaseHTTPRequestHandler): elif graph == 'get': graph = '_GET' watchPointsJson = sortedWatchPoints(self.server.fitness, graph) - print('watchPointsJson: ' + str(watchPointsJson)) msg = json.dumps(watchPointsJson, ensure_ascii=False).encode('utf-8') msglen = len(msg) diff --git a/fitnessFunctions.py b/fitnessFunctions.py index 52433db0d..eeb607ec7 100644 --- a/fitnessFunctions.py +++ b/fitnessFunctions.py @@ -100,8 +100,6 @@ def htmlWatchPointsGraph(baseDir: str, fitness: {}, fitnessId: str, name = watchPoint.split(' ')[1] averageTime = float(watchPoint.split(' ')[0]) heightPercent = int(averageTime * 100 / maxAverageTime) - print('heightPercent: ' + str(averageTime) + - ' ' + str(heightPercent) + '%') timeMS = int(averageTime) if heightPercent == 0: continue