mirror of https://github.com/apache/lucene.git
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:
parent
f2c59db273
commit
03f5a5e7a1
|
@ -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
|
||||
----------------------
|
||||
|
||||
|
|
|
@ -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)) {
|
||||
|
|
Loading…
Reference in New Issue