SOLR-13398: Move log "Processing SSL Credential Provider chain" from INFO to DEBUG to prevent leaking into bin/solr printout

This commit is contained in:
Jan Høydahl 2019-04-12 11:54:40 +02:00
parent f2c59db273
commit 03f5a5e7a1
2 changed files with 3 additions and 1 deletions

View File

@ -194,6 +194,8 @@ Improvements
* SOLR-13359: Make UpdateHandler support other prefixes (besides hdfs:/) (Kevin Risden)
* SOLR-13398: Move log line "Processing SSL Credential Provider chain..." from INFO to DEBUG (janhoy)
Other Changes
----------------------

View File

@ -56,7 +56,7 @@ public class SSLCredentialProviderFactory {
public List<SSLCredentialProvider> getProviders() {
ArrayList<SSLCredentialProvider> providers = new ArrayList<>();
log.info(String.format(Locale.ROOT, "Processing SSL Credential Provider chain: %s", providerChain));
log.debug(String.format(Locale.ROOT, "Processing SSL Credential Provider chain: %s", providerChain));
String classPrefix = "class://";
for (String provider : providerChain.split(";")) {
if (defaultProviders.containsKey(provider)) {