do not truncate result output as that can be done in the log formatter

main
Toms Bauģis 9 years ago
parent ade154575e
commit 5a4f297134

@ -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:

Loading…
Cancel
Save