Skip to content

Commit

Permalink
Change log level for UnsatisfiedLinkError to debug
Browse files Browse the repository at this point in the history
  • Loading branch information
ManfredKarrer committed Jun 24, 2017
1 parent c144b81 commit c7aee7e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/src/main/java/org/bitcoin/Secp256k1Context.java
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ public class Secp256k1Context {
System.loadLibrary("secp256k1");
contextRef = secp256k1_init_context();
} catch (UnsatisfiedLinkError e) {
log.info(e.toString());
log.debug(e.toString());
isEnabled = false;
} catch (AccessControlException e) {
log.debug(e.toString());
Expand Down

0 comments on commit c7aee7e

Please sign in to comment.