Skip to content

Commit

Permalink
fix logging
Browse files Browse the repository at this point in the history
  • Loading branch information
erilong committed Nov 6, 2020
1 parent dede45a commit fb0185a
Showing 1 changed file with 2 additions and 2 deletions.
Expand Up @@ -173,8 +173,8 @@ private static void initSelfSignedSocketFactory(boolean enableHttps2)
KeyStore trustStore = null;
try {
trustStore = securityService.getTrustStore();
} catch(Exception e) {
log.warn(e.getMessage(),e);
} catch (Exception e) {
log.warn("No trust store found: " + e.getMessage());
}
X509TrustManager trustManager = new SelfSignedX509TrustManager(trustStore);
KeyManager[] keyManagers = null;
Expand Down

0 comments on commit fb0185a

Please sign in to comment.