mirror of https://github.com/nucypher/nucypher.git
Actually emit a critical log in the case that an unhandled error happens and we're choosing not to handle it here.
parent
136b485664
commit
aa5566c856
|
@ -265,6 +265,7 @@ class Character:
|
||||||
def handle_learning_errors(self, *args, **kwargs):
|
def handle_learning_errors(self, *args, **kwargs):
|
||||||
failure = args[0]
|
failure = args[0]
|
||||||
if self._abort_on_learning_error:
|
if self._abort_on_learning_error:
|
||||||
|
self.log.critical("Unhandled error during node learning: {}".format(failure.getTraceback()))
|
||||||
failure.raiseException()
|
failure.raiseException()
|
||||||
else:
|
else:
|
||||||
self.log.warning("Unhandled error during node learning: {}".format(failure.getTraceback()))
|
self.log.warning("Unhandled error during node learning: {}".format(failure.getTraceback()))
|
||||||
|
|
Loading…
Reference in New Issue