1
0

trivial: add a few log lines for startup

This commit is contained in:
SomberNight
2019-12-10 23:31:58 +01:00
parent d08ed6410a
commit a5a7c205e3
2 changed files with 3 additions and 1 deletions

View File

@@ -263,7 +263,8 @@ def is_using_fast_ecc():
try:
_libsecp256k1 = load_library()
except:
except BaseException as e:
_logger.warning(f'failed to load libsecp256k1: {repr(e)}')
_libsecp256k1 = None
_prepare_monkey_patching_of_python_ecdsa_internals_with_libsecp256k1()