Skip to content

Commit b8e2efe

Browse files
committed
Fix logging (another one)
1 parent 968c651 commit b8e2efe

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Diff for: Sources/AsyncHTTPClient/SSLContextCache.swift

+2-2
Original file line numberDiff line numberDiff line change
@@ -34,12 +34,12 @@ extension SSLContextCache {
3434
}
3535

3636
if let sslContext = sslContext {
37-
logger.debug("found SSL context in cache",
37+
logger.trace("found SSL context in cache",
3838
metadata: ["ahc-tls-config": "\(tlsConfiguration)"])
3939
return eventLoop.makeSucceededFuture(sslContext)
4040
}
4141

42-
logger.debug("creating new SSL context",
42+
logger.trace("creating new SSL context",
4343
metadata: ["ahc-tls-config": "\(tlsConfiguration)"])
4444
let newSSLContext = self.offloadQueue.asyncWithFuture(eventLoop: eventLoop) {
4545
try NIOSSLContext(configuration: tlsConfiguration)

0 commit comments

Comments
 (0)