mirror of
https://github.com/bitcoinj/bitcoinj.git
synced 2025-03-09 16:04:54 +01:00
Secp256k1Context: Use log.debug() instead of .info() when native secp256k1 cannot be used.
This commit is contained in:
parent
c4e418f8ab
commit
9f0c888aa1
1 changed files with 1 additions and 4 deletions
|
@ -37,10 +37,7 @@ public class Secp256k1Context {
|
|||
try {
|
||||
System.loadLibrary("secp256k1");
|
||||
contextRef = secp256k1_init_context();
|
||||
} catch (UnsatisfiedLinkError e) {
|
||||
log.info(e.toString());
|
||||
isEnabled = false;
|
||||
} catch (AccessControlException e) {
|
||||
} catch (UnsatisfiedLinkError | AccessControlException e) {
|
||||
log.debug(e.toString());
|
||||
isEnabled = false;
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue