Change .info to .error

This commit is contained in:
Athanasios Voutsadakis
2017-09-25 16:24:11 +01:00
parent 79752d2754
commit 1e9c04c583
+1 -1
View File
@@ -5,4 +5,4 @@ import traceback
def worker_abort(worker): def worker_abort(worker):
worker.log.info("worker received ABORT") worker.log.info("worker received ABORT")
for threadId, stack in sys._current_frames().items(): for threadId, stack in sys._current_frames().items():
worker.log.info(''.join(traceback.format_stack(stack))) worker.log.error(''.join(traceback.format_stack(stack)))