Skip to content

Commit 56b07b5

Browse files
committed
change log level and add comment in template.yaml
1 parent 4e73292 commit 56b07b5

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

Examples/APIGateway/template.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ Resources:
99
Properties:
1010
CodeUri: .build/plugins/AWSLambdaPackager/outputs/AWSLambdaPackager/APIGatewayLambda/APIGatewayLambda.zip
1111
Timeout: 60
12-
Handler: swift.bootstrap
12+
Handler: swift.bootstrap # ignored by the Swift runtime
1313
Runtime: provided.al2
1414
MemorySize: 512
1515
Architectures:
@@ -19,7 +19,7 @@ Resources:
1919
# by default, AWS Lambda runtime produces no log
2020
# use `LOG_LEVEL: debug` for for lifecycle and event handling information
2121
# use `LOG_LEVEL: trace` for detailed input event information
22-
LOG_LEVEL: trace
22+
LOG_LEVEL: debug
2323
Events:
2424
HttpApiEvent:
2525
Type: HttpApi

Examples/S3_AWSSDK/template.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ Resources:
99
Properties:
1010
CodeUri: .build/plugins/AWSLambdaPackager/outputs/AWSLambdaPackager/AWSSDKExample/AWSSDKExample.zip
1111
Timeout: 60
12-
Handler: swift.bootstrap
12+
Handler: swift.bootstrap # ignored by the Swift runtime
1313
Runtime: provided.al2
1414
MemorySize: 512
1515
Architectures:
@@ -19,7 +19,7 @@ Resources:
1919
# by default, AWS Lambda runtime produces no log
2020
# use `LOG_LEVEL: debug` for for lifecycle and event handling information
2121
# use `LOG_LEVEL: trace` for detailed input event information
22-
LOG_LEVEL: trace
22+
LOG_LEVEL: debug
2323

2424
# Handles all methods of the REST API
2525
Events:

Examples/S3_Soto/template.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ Resources:
1010
Properties:
1111
CodeUri: .build/plugins/AWSLambdaPackager/outputs/AWSLambdaPackager/SotoExample/SotoExample.zip
1212
Timeout: 60
13-
Handler: swift.bootstrap
13+
Handler: swift.bootstrap # ignored by the Swift runtime
1414
Runtime: provided.al2
1515
MemorySize: 512
1616
Architectures:
@@ -20,7 +20,7 @@ Resources:
2020
# by default, AWS Lambda runtime produces no log
2121
# use `LOG_LEVEL: debug` for for lifecycle and event handling information
2222
# use `LOG_LEVEL: trace` for detailed input event information
23-
LOG_LEVEL: trace
23+
LOG_LEVEL: debug
2424

2525
# Handles all methods of the REST API
2626
Events:

0 commit comments

Comments
 (0)