diff --git a/services/gdd_service.go b/services/gdd_service.go
index b3ce4edcefe5ae838bfcd05ae9e6a7a693733f53..19bef95132a78dbc7c753b04869b7b383278ca67 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"
@@ -19,7 +18,6 @@ func GetGddValues(ctx common.DawnCtx, request models.GddRequest) models.GddRespo
 	if request.PlantingDate.Year() == time.Now().Year() {
 		gdds = persistence.CurrentGddFindFirstByYearAndLocation(ctx, request.BuildLocation())
 	} else if request.PlantingDate.Year() > time.Now().Year() {
-		fmt.Println("yooooo")
 		return models.GddResponse{
 			Product:          product.Name,
 			ClosestLatitude:  request.Latitude,