We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5f91075 commit 3b1b8e1Copy full SHA for 3b1b8e1
src/lambda/start_codebuild/index.py
@@ -3,6 +3,7 @@
3
"""CodeBuild Starter Lambda Function"""
4
import logging
5
from os import getenv
6
+import json
7
8
import boto3
9
from botocore.config import Config as BotoCoreConfig
@@ -96,4 +97,5 @@ def delete_no_op(event, _):
96
97
98
def handler(event, context):
99
"""Lambda Handler"""
100
+ LOGGER.info("Received event: %s", json.dumps(event))
101
HELPER(event, context)
0 commit comments