Use the same spacing in log message as other entries

This commit is contained in:
Gary Gregory 2024-05-22 13:51:16 -04:00
parent 15b93d481b
commit ebd5d87340
1 changed files with 1 additions and 1 deletions

View File

@ -160,7 +160,7 @@ abstract class AbstractClientTlsStrategy implements TlsStrategy, TlsSocketStrate
if (LOG.isDebugEnabled()) {
LOG.debug("Enabled protocols: {}", Arrays.asList(sslEngine.getEnabledProtocols()));
LOG.debug("Enabled cipher suites:{}", Arrays.asList(sslEngine.getEnabledCipherSuites()));
LOG.debug("Enabled cipher suites: {}", Arrays.asList(sslEngine.getEnabledCipherSuites()));
LOG.debug("Starting handshake ({})", handshakeTimeout);
}
}, (e, sslEngine) -> {