Skip to content
Snippets Groups Projects
Commit 29554598 authored by André Anjos's avatar André Anjos :speech_balloon:
Browse files

[backend] Increase default verbosity on workers while executing

parent d0172995
No related branches found
No related tags found
No related merge requests found
......@@ -456,6 +456,7 @@ class Worker(models.Model):
cmdline = [process]
if cpulimit is not None: cmdline += ['--cpulimit=%s' % cpulimit]
if settings.DEBUG: cmdline += ['-vv']
else: cmdline += ['-v']
# start newly assigned job splits
with transaction.atomic():
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment