From 6a51b954a34c886fc665b938eb0c8f3367438c9f Mon Sep 17 00:00:00 2001 From: commoddity Date: Fri, 3 May 2024 18:39:05 +0100 Subject: [PATCH] fix: remove debug log --- requests/validate_body.go | 2 -- 1 file changed, 2 deletions(-) diff --git a/requests/validate_body.go b/requests/validate_body.go index dea071e..c13294d 100644 --- a/requests/validate_body.go +++ b/requests/validate_body.go @@ -4,7 +4,6 @@ package requests import ( - "fmt" "net/http" "strings" @@ -32,7 +31,6 @@ func (v *requestBodyValidator) ValidateRequestBody(request *http.Request) (bool, operation := helpers.ExtractOperation(request, pathItem) if operation == nil { - fmt.Println("HERE!!!!") return false, []*errors.ValidationError{errors.OperationNotFound(pathItem, request, request.Method, foundPath)} } if operation.RequestBody == nil {