Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 127abc3

Browse files
committedSep 20, 2021
Fix logging (another one)
1 parent 449b6f1 commit 127abc3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed
 

‎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)
Please sign in to comment.