We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5a1cf68 commit 7808ca1Copy full SHA for 7808ca1
Sources/AsyncHTTPClient/SSLContextCache.swift
@@ -34,12 +34,12 @@ extension SSLContextCache {
34
}
35
36
if let sslContext = sslContext {
37
- logger.debug("found SSL context in cache",
+ logger.trace("found SSL context in cache",
38
metadata: ["ahc-tls-config": "\(tlsConfiguration)"])
39
return eventLoop.makeSucceededFuture(sslContext)
40
41
42
- logger.debug("creating new SSL context",
+ logger.trace("creating new SSL context",
43
44
let newSSLContext = self.offloadQueue.asyncWithFuture(eventLoop: eventLoop) {
45
try NIOSSLContext(configuration: tlsConfiguration)
0 commit comments