Skip to content

Commit

Permalink
fix: remove debug log
Browse files Browse the repository at this point in the history
  • Loading branch information
commoddity authored and daveshanley committed May 4, 2024
1 parent ab13cf1 commit 6a51b95
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions requests/validate_body.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@
package requests

import (
"fmt"
"net/http"
"strings"

Expand Down Expand Up @@ -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 {
Expand Down

0 comments on commit 6a51b95

Please sign in to comment.