Skip to content

Commit ff568d0

Browse files
committed
use debugStackTrace instead of e.printStackTrace
1 parent 1e51fe1 commit ff568d0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/org/jruby/ext/openssl/SecurityHelper.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -193,7 +193,7 @@ public static CertificateFactory getCertificateFactory(final String type)
193193
final Provider provider = getSecurityProvider();
194194
if ( provider != null ) return getCertificateFactory(type, provider);
195195
}
196-
catch (CertificateException e) {e.printStackTrace(); }
196+
catch (CertificateException e) { debugStackTrace(e); }
197197
return CertificateFactory.getInstance(type);
198198
}
199199

0 commit comments

Comments
 (0)