Skip to content

Commit

Permalink
Secp256k1Context use log.debug() instead of log.info() when native se…
Browse files Browse the repository at this point in the history
…cp256k1 can not be used.
  • Loading branch information
oscarguindzberg committed Dec 20, 2018
1 parent fa2eeda commit bdc84b5
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 bdc84b5

Please sign in to comment.