Indent negotiated parameters in log

This commit is contained in:
Davide De Rosa 2018-09-21 19:53:38 +02:00
parent 1ba7e73e9c
commit 668474d75c
1 changed files with 3 additions and 3 deletions

View File

@ -902,14 +902,14 @@ public class SessionProxy {
let pushedFraming = pushReply.compressionFraming let pushedFraming = pushReply.compressionFraming
if let negFraming = pushedFraming { if let negFraming = pushedFraming {
log.info("Negotiated compression framing: \(negFraming.rawValue)") log.info("\tNegotiated compression framing: \(negFraming.rawValue)")
} }
if let negPing = pushReply.ping { if let negPing = pushReply.ping {
log.info("Negotiated keep-alive: \(negPing) seconds") log.info("\tNegotiated keep-alive: \(negPing) seconds")
} }
let pushedCipher = pushReply.cipher let pushedCipher = pushReply.cipher
if let negCipher = pushedCipher { if let negCipher = pushedCipher {
log.info("Negotiated cipher: \(negCipher.rawValue)") log.info("\tNegotiated cipher: \(negCipher.rawValue)")
} }
let bridge: EncryptionBridge let bridge: EncryptionBridge