# HG changeset patch # User Sascha Wilde # Date 1575469782 -3600 # Node ID 2ede9ac26ef2a920ceffb48a9cf2b381c3a1a86c # Parent de7aa92308377f7c41f404cd66ac2268b64e2d56 Removed verbose output of optimisticPadClassification, (was for debugging only). diff -r de7aa9230837 -r 2ede9ac26ef2 pkg/controllers/bottlenecks.go --- 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 }