From 5a4f297134a78a1fd8fec9c79c94202efc402089 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Toms=20Bau=C4=A3is?= Date: Tue, 22 Sep 2015 14:23:12 +0100 Subject: [PATCH] do not truncate result output as that can be done in the log formatter --- rq/worker.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/rq/worker.py b/rq/worker.py index 1f592a1..231b219 100644 --- a/rq/worker.py +++ b/rq/worker.py @@ -602,8 +602,6 @@ class Worker(object): self.log.info(green('Job OK')) if rv: log_result = "{0!r}".format(text_type(rv)) - if len(log_result) > 2000: - log_result = "{0}..\n..output truncated".format(log_result[:2000]) self.log.debug('Result: {0}'.format(yellow(log_result))) if result_ttl == 0: