Properly pass exception to logger
This commit is contained in:
parent
75c6ddb5b3
commit
81791030e8
1 changed files with 3 additions and 3 deletions
|
|
@ -101,7 +101,7 @@ class Device(dbus.service.Object):
|
||||||
usrid, subtype, hsh = sensor.identify(update_cb)
|
usrid, subtype, hsh = sensor.identify(update_cb)
|
||||||
self.VerifyStatus('verify-match', True)
|
self.VerifyStatus('verify-match', True)
|
||||||
except Exception as e:
|
except Exception as e:
|
||||||
logging.exception('Oops', e)
|
logging.exception(e)
|
||||||
self.VerifyStatus('verify-no-match', True)
|
self.VerifyStatus('verify-no-match', True)
|
||||||
|
|
||||||
thread = Thread(target=run)
|
thread = Thread(target=run)
|
||||||
|
|
@ -133,7 +133,7 @@ class Device(dbus.service.Object):
|
||||||
sensor.enroll(uid2identity(uid), 0xf5, update_cb) # TODO parse the finger name
|
sensor.enroll(uid2identity(uid), 0xf5, update_cb) # TODO parse the finger name
|
||||||
self.EnrollStatus('enroll-completed', True)
|
self.EnrollStatus('enroll-completed', True)
|
||||||
except Exception as e:
|
except Exception as e:
|
||||||
logging.exception('Oops', e)
|
logging.exception(e)
|
||||||
self.EnrollStatus('enroll-failed', True)
|
self.EnrollStatus('enroll-failed', True)
|
||||||
|
|
||||||
thread = Thread(target=run)
|
thread = Thread(target=run)
|
||||||
|
|
@ -236,6 +236,6 @@ if __name__ == '__main__':
|
||||||
try:
|
try:
|
||||||
loop.run()
|
loop.run()
|
||||||
except Exception as e:
|
except Exception as e:
|
||||||
logging.exception('Oops', e)
|
logging.exception(e)
|
||||||
raise e
|
raise e
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue