diff --git a/awslambdaric/__main__.py b/awslambdaric/__main__.py index b6fe5b8..1c1626b 100644 --- a/awslambdaric/__main__.py +++ b/awslambdaric/__main__.py @@ -13,7 +13,6 @@ def main(args): handler = args[1] lambda_runtime_api_addr = os.environ["AWS_LAMBDA_RUNTIME_API"] - print(f"Executing '{handler}' in function directory '{app_root}'") bootstrap.run(app_root, handler, lambda_runtime_api_addr) diff --git a/setup.py b/setup.py index 1d8a2ce..e8a910e 100644 --- a/setup.py +++ b/setup.py @@ -68,7 +68,7 @@ def read_requirements(req="base.txt"): setup( name="awslambdaric", - version="1.2.0", + version="1.2.1", author="Amazon Web Services", description="AWS Lambda Runtime Interface Client for Python", long_description=read("README.md"),