diff --git a/services/gdd_service.go b/services/gdd_service.go
index d2d489675feaace7b956e2fb738ddd057b481271..7b170d52d23f3980429223a8a4f7b51d0dc905d3 100644
--- a/services/gdd_service.go
+++ b/services/gdd_service.go
@@ -1,7 +1,6 @@
 package services
 
 import (
-	"fmt"
 	"time"
 
 	"github.com/tgs266/dawn-go-common/common"
@@ -68,7 +67,6 @@ func GetNormalValues(request models.GddRequest) models.GddResponse {
 		}
 		rows = append(rows, row)
 		mean := stat.Mean(row, nil)
-		fmt.Println(row, mean)
 		gdds = append(gdds, mean)
 	}