From bfcc2d0732e613ee5d2048ea69ff2c51e0bd07b4 Mon Sep 17 00:00:00 2001 From: Wing Fung Lau <4760060+hawflau@users.noreply.github.com> Date: Sun, 20 Jun 2021 18:02:58 -0700 Subject: [PATCH] Remove logging of SAR service call response --- samtranslator/plugins/application/serverless_app_plugin.py | 1 - 1 file changed, 1 deletion(-) diff --git a/samtranslator/plugins/application/serverless_app_plugin.py b/samtranslator/plugins/application/serverless_app_plugin.py index 05741c5df..fa3ba3601 100644 --- a/samtranslator/plugins/application/serverless_app_plugin.py +++ b/samtranslator/plugins/application/serverless_app_plugin.py @@ -360,7 +360,6 @@ def _sar_service_call(self, service_call_lambda, logical_id, *args): """ try: response = service_call_lambda(*args) - LOG.info(response) return response except ClientError as e: error_code = e.response["Error"]["Code"]