This closes #3366
This commit is contained in:
commit
eb84d92af1
|
@ -44,7 +44,7 @@ public class DefaultSSLContextFactory implements SSLContextFactory {
|
|||
String crlPath, String trustManagerFactoryPlugin, boolean trustAll) throws Exception {
|
||||
if (log.isDebugEnabled()) {
|
||||
final StringBuilder builder = new StringBuilder();
|
||||
configuration.forEach((k, v) -> builder.append("\r\n").append(k).append("=").append(v));
|
||||
configuration.forEach((k, v) -> builder.append("\r\n").append(k).append("=").append(k.toLowerCase().contains("password") ? "****" : v));
|
||||
log.debugf("Creating SSL context with configuration %s", builder.toString());
|
||||
}
|
||||
boolean useDefaultSslContext = ConfigurationHelper.getBooleanProperty(TransportConstants.USE_DEFAULT_SSL_CONTEXT_PROP_NAME, TransportConstants.DEFAULT_USE_DEFAULT_SSL_CONTEXT, configuration);
|
||||
|
|
Loading…
Reference in New Issue