We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c4c71cc commit accb29bCopy full SHA for accb29b
Sources/AWSLambdaRuntimeCore/LambdaRuntime.swift
@@ -29,7 +29,9 @@ import Foundation
29
public final class LambdaRuntime<Handler>: Service, @unchecked Sendable where Handler: StreamingLambdaHandler {
30
// TODO: We want to change this to Mutex as soon as this doesn't crash the Swift compiler on Linux anymore
31
let handlerMutex: NIOLockedValueBox<Handler?>
32
- let logger: Logger
+
33
+ // logger is accessible from the outside, but only mutable from the inside
34
+ public private(set) var logger: Logger
35
let eventLoop: EventLoop
36
37
public init(
0 commit comments