trivial: add a few log lines for startup
This commit is contained in:
@@ -485,6 +485,7 @@ class Daemon(Logger):
|
||||
gui_name = config.get('gui', 'qt')
|
||||
if gui_name in ['lite', 'classic']:
|
||||
gui_name = 'qt'
|
||||
self.logger.info(f'launching GUI: {gui_name}')
|
||||
gui = __import__('electrum.gui.' + gui_name, fromlist=['electrum'])
|
||||
self.gui_object = gui.ElectrumGui(config, self, plugins)
|
||||
try:
|
||||
|
||||
@@ -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()
|
||||
|
||||
Reference in New Issue
Block a user