From 646fcd1e7367c4503c51e2af74f2b67d93e988be Mon Sep 17 00:00:00 2001 From: Guy Moses Date: Thu, 7 Dec 2023 12:17:05 +0200 Subject: [PATCH] fix: change empty sqs polling log to DEBUG --- src/parsers/aws.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/parsers/aws.ts b/src/parsers/aws.ts index 9cdee57f..ba12f131 100644 --- a/src/parsers/aws.ts +++ b/src/parsers/aws.ts @@ -216,7 +216,7 @@ export const sqsParser = (requestData, responseData) => { } if (shouldSkipSqsSpan(parsedReqBody, awsServiceData.messageId)) { - logger.info( + logger.debug( `Not tracing empty SQS polling requests (override by setting the env var LUMIGO_AUTO_FILTER_EMPTY_SQS=FALSE)` ); Object.assign(awsServiceData, getSpanSkipExportAttributes());