From b6a26aed94e255fb21db7286ec2774af0988c023 Mon Sep 17 00:00:00 2001 From: Johan de Klerk <johan@shiplogic.com> Date: Wed, 2 Nov 2022 14:37:50 +0200 Subject: [PATCH] Removed SQS validate logs --- handler_utils/sqs.go | 2 -- 1 file changed, 2 deletions(-) diff --git a/handler_utils/sqs.go b/handler_utils/sqs.go index 1c25266..a77f1d8 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 } -- GitLab