You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: coherence-visualvm-plugin/src/main/java/com/oracle/coherence/plugin/visualvm/helper/HttpRequestSender.java
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -52,6 +52,7 @@
52
52
importjava.util.Map;
53
53
importjava.util.Set;
54
54
importjava.util.function.Function;
55
+
importjava.util.logging.Level;
55
56
importjava.util.logging.Logger;
56
57
importjava.util.stream.Collectors;
57
58
@@ -106,8 +107,7 @@ public HttpRequestSender(String sUrl)
106
107
}
107
108
catch (Exceptione)
108
109
{
109
-
LOGGER.warning("Unable to initialize SSL: " + e);
110
-
e.printStackTrace();
110
+
LOGGER.log(Level.WARNING, "Unable to initialize SSL: ", e);
0 commit comments