From f32a243e471e794bfe8289fc297aac966c634196 Mon Sep 17 00:00:00 2001 From: Athanasios Voutsadakis Date: Mon, 25 Sep 2017 16:24:35 +0100 Subject: [PATCH] Change .info to .error --- gunicorn_config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gunicorn_config.py b/gunicorn_config.py index 86e2567d5..11993ab78 100644 --- a/gunicorn_config.py +++ b/gunicorn_config.py @@ -5,4 +5,4 @@ import traceback def worker_abort(worker): worker.log.info("worker received ABORT") for threadId, stack in sys._current_frames().items(): - worker.log.info(''.join(traceback.format_stack(stack))) + worker.log.error(''.join(traceback.format_stack(stack)))