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 7114adb commit c8a799eCopy full SHA for c8a799e
Sources/AWSLambdaRuntimeCore/LambdaRuntime.swift
@@ -38,7 +38,7 @@ public final class LambdaRuntime<Handler>: @unchecked Sendable where Handler: St
38
// developers have to wait for AWS Lambda to dispose and recreate a runtime environment to pickup a change
39
// this approach is less flexible but more performant than reading the value of the environment variable at each invocation
40
var log = logger
41
- log.logLevel = Lambda.env("LOG_LEVEL").flatMap(Logger.Level.init) ?? .info
+ log.logLevel = Lambda.env("LOG_LEVEL").flatMap(Logger.Level.init) ?? .info
42
self.logger = logger
43
}
44
0 commit comments