Secp256k1Context: Use log.debug() instead of .info() when native secp256k1 cannot be used.

This commit is contained in:
Oscar Guindzberg 2018-12-17 12:32:00 -03:00 committed by Andreas Schildbach
parent c4e418f8ab
commit 9f0c888aa1

View file

@ -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;
}