We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8e5d762 commit 2743c7cCopy full SHA for 2743c7c
1 file changed
src/main/java/org/jruby/ext/openssl/x509store/Lookup.java
@@ -393,13 +393,13 @@ private InputStream wrapJRubyNormalizedInputStream(String file) throws IOExcepti
393
}
394
catch (FileExistsException ex) {
395
// should not happen because ModeFlag does not contain CREAT.
396
- ex.printStackTrace(System.err);
397
- throw new IllegalStateException(ex.getMessage(), ex);
+ OpenSSL.debugStackTrace(ex);
+ throw new IllegalStateException(ex);
398
399
catch (InvalidValueException ex) {
400
// should not happen because ModeFlasg does not contain APPEND.
401
402
403
404
405
0 commit comments