changeset 4861:2ede9ac26ef2

Removed verbose output of optimisticPadClassification, (was for debugging only).
author Sascha Wilde <wilde@intevation.de>
date Wed, 04 Dec 2019 15:29:42 +0100
parents de7aa9230837
children 1a9e3e5feaa7
files pkg/controllers/bottlenecks.go
diffstat 1 files changed, 0 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- a/pkg/controllers/bottlenecks.go	Wed Dec 04 15:28:22 2019 +0100
+++ b/pkg/controllers/bottlenecks.go	Wed Dec 04 15:29:42 2019 +0100
@@ -161,9 +161,6 @@
 	// of the classifaction interval extend the
 	// time spend in the highest class by the difference.
 	if delta := to.Sub(from) - actualDuration; delta > 0 {
-		log.Printf("info: time interval: (%v - %v)\n", from, to)
-		log.Printf("info: found only data for %.2f hours, padding by %.2f hours\n",
-			actualDuration.Hours(), delta.Hours())
 		classified[len(classified)-1] += delta
 	}