Secp256k1Context: Remove a bit of redundancy in logging.

This commit is contained in:
Andreas Schildbach
2016-04-02 16:05:28 +02:00
parent 9c83299571
commit aa9f1bc895

View File

@@ -36,7 +36,7 @@ public class Secp256k1Context {
System.loadLibrary("secp256k1");
contextRef = secp256k1_init_context();
} catch (UnsatisfiedLinkError e) {
log.info("UnsatisfiedLinkError: " + e.toString());
log.info(e.toString());
isEnabled = false;
}
enabled = isEnabled;