Skip to content

Commit

Permalink
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions core/src/main/java/org/jruby/util/SecurityHelper.java
Original file line number Diff line number Diff line change
@@ -43,10 +43,10 @@ private static boolean setNonRestricted() {
return true;
}
catch (ClassNotFoundException e) {
LOG.info("unable un-restrict jce security: " + e);
if (LOG.isDebugEnabled()) LOG.debug("unable un-restrict jce security: " + e);
}
catch (Exception e) {
LOG.debug("unable un-restrict jce security: ", e);
if (LOG.isDebugEnabled()) LOG.debug("unable un-restrict jce security: ", e);
}
return false;
}

0 comments on commit 0355763

Please sign in to comment.