Skip to content
Prev Previous commit
Next Next commit
change logging to debug
Signed-off-by: Achal Shah <achals@gmail.com>
  • Loading branch information
achals committed Mar 7, 2022
commit da64fbfac3fc17b1ad13a23955b77b37bd85748b
4 changes: 2 additions & 2 deletions sdk/python/feast/infra/aws.py
Original file line number Diff line number Diff line change
Expand Up @@ -119,8 +119,8 @@ def _deploy_feature_server(self, project: str, image_uri: str):
lambda_client = boto3.client("lambda")
api_gateway_client = boto3.client("apigatewayv2")
function = aws_utils.get_lambda_function(lambda_client, resource_name)
_logger.info("Using function name: %s", resource_name)
_logger.info("Found function: %s", function)
_logger.debug("Using function name: %s", resource_name)
_logger.debug("Found function: %s", function)

if function is None:
# If the Lambda function does not exist, create it.
Expand Down