diff --git a/handler_utils/sqs.go b/handler_utils/sqs.go index 1c25266134a5e753bfd60d25bf9c17dae17865a0..a77f1d8841b75202e41e7af02bce205d838dd804 100644 --- a/handler_utils/sqs.go +++ b/handler_utils/sqs.go @@ -4,7 +4,6 @@ import ( "encoding/json" "github.com/aws/aws-lambda-go/events" "gitlab.bob.co.za/bob-public-utils/bobgroup-go-utils/errors" - "gitlab.bob.co.za/bob-public-utils/bobgroup-go-utils/logs" "gitlab.bob.co.za/bob-public-utils/bobgroup-go-utils/s3" "gitlab.bob.co.za/bob-public-utils/bobgroup-go-utils/sqs" "reflect" @@ -27,7 +26,6 @@ func ValidateSQSEndpoints(endpoints map[string]interface{}) (map[string]interfac } // replace the endpoint value so we can quickly call this handler endpoints[messageType] = handler - logs.Info("%s: OK (request: %v)\n", messageType, handler.RecordType) } return endpoints, nil }