qt wizard: hww dialogs: log some exceptions more aggressively
sort of related: https://github.com/spesmilo/electrum/issues/8892
This commit is contained in:
@@ -149,6 +149,7 @@ class WCBitbox02ScriptAndDerivation(WCScriptAndDerivation):
|
||||
self.error = str(e)
|
||||
except Exception as e:
|
||||
self.error = repr(e)
|
||||
self.logger.exception(repr(e))
|
||||
finally:
|
||||
self.busy = False
|
||||
|
||||
|
||||
@@ -684,6 +684,7 @@ class WCKeepkeyInit(WizardComponent, Logger):
|
||||
except Exception as e:
|
||||
self.valid = False
|
||||
self.error = repr(e)
|
||||
self.logger.exception(repr(e))
|
||||
finally:
|
||||
self.busy = False
|
||||
|
||||
|
||||
@@ -616,6 +616,7 @@ class WCSafeTInit(WizardComponent, Logger):
|
||||
except Exception as e:
|
||||
self.valid = False
|
||||
self.error = repr(e)
|
||||
self.logger.exception(repr(e))
|
||||
finally:
|
||||
self.busy = False
|
||||
|
||||
|
||||
@@ -901,6 +901,7 @@ class WCTrezorInit(WizardComponent, Logger):
|
||||
except Exception as e:
|
||||
self.valid = False
|
||||
self.error = repr(e)
|
||||
self.logger.exception(repr(e))
|
||||
finally:
|
||||
self.busy = False
|
||||
|
||||
|
||||
Reference in New Issue
Block a user