From 219ea4b2ebae43f8d6fecc615385dd3100e4fadf Mon Sep 17 00:00:00 2001 From: JamesJJ Date: Sat, 23 Dec 2023 18:15:23 +0800 Subject: [PATCH] Log exclusions at INFO --- src/lambda.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lambda.py b/src/lambda.py index efef28a..ac0aa06 100644 --- a/src/lambda.py +++ b/src/lambda.py @@ -128,7 +128,7 @@ def cfl_data_to_cwl(data): "put_batch", extra={"count": len(records), "data_size": batch_bytes} ) sequence_token = put_records_to_cwl(records, sequence_token) - logging.debug("match_exclusions", extra={"count": excluded_records}) + logging.info("match_exclusions", extra={"count": excluded_records}) def batch_at_limits(record_count, payload_bytes, time_window):