Properly log verifier exceptions.

If an exception is thrown in the verifier child process for a
specific exchange, log it properly.

Was simply printing to stdout, which goes nowhere for daemon processes.

Change-Id: I528ad08e70d7bdf03e9a8e1d8abe45d09f2eb476
This commit is contained in:
Monsyne Dragon 2016-03-04 21:07:17 +00:00
parent 03cd412254
commit 5ac182ac4e
1 changed files with 5 additions and 2 deletions

View File

@ -211,10 +211,13 @@ class Verifier(object):
try:
self._run(callback=callback)
except Exception, e:
print e
raise e
msg = "ERROR during Verification %s: %s" % (exchange_name,
e)
logger.exception(msg)
return True
else:
self._run()
return False
def verify_for_range(self, ending_max, callback=None):
pass