Change a print statement to use logger instead

This commit is contained in:
Bob Pasker 2015-12-31 08:33:42 -05:00
parent fc9456e1a8
commit cc6c4a6eb9

View file

@ -183,7 +183,7 @@ class Dispatcher:
# All other errors should not stop the thread, so just print them
except:
print_exc()
self.logger.exception()
self.logger.info('Dispatcher thread stopped')