Correct excessively short log length limit
1 files changed, 1 insertions(+), 2 deletions(-) M buildsrht/blueprints/jobs.py
M buildsrht/blueprints/jobs.py => buildsrht/blueprints/jobs.py +1 -2
@@ 216,8 216,7 @@ def tag_svg(username, path): return svg_page(jobs) def logify(text, task, log_url): - #log_max = 16384 - log_max = 512 + log_max = 16384 if len(text) > log_max: text = text[-log_max:] try: