diff --git a/health-api/controllers/calculator/main.go b/health-api/controllers/calculator/main.go index 49dc657..2d53fbf 100644 --- a/health-api/controllers/calculator/main.go +++ b/health-api/controllers/calculator/main.go @@ -177,7 +177,7 @@ func Post(c *gin.Context) { if err != nil { log.Error(). - Str("Service", "imc"). + Str("Service", "recommendations"). Str("Error", err.Error()). Msg("Error to consume gRPC Service") @@ -186,7 +186,7 @@ func Post(c *gin.Context) { ) c.JSON(http.StatusInternalServerError, gin.H{ - "message": "Error to create gRPC Connection with IMC Service", + "message": "Error to create gRPC Connection with Recommendations Service", "error": err.Error(), }) }