Split --raw-logs into --no-pretty and --no-log options.
--no-log: don't capture logs or run redo-log (same as pre-redo-log redo) --no-pretty: don't pretty-print logs, print @@REDO lines. The latter is an option to both redo and redo-log.
This commit is contained in:
parent
8b5a567b2e
commit
bc632982fc
6 changed files with 25 additions and 18 deletions
4
vars.py
4
vars.py
|
|
@ -16,7 +16,9 @@ DEBUG_PIDS = os.environ.get('REDO_DEBUG_PIDS', '') and 1 or 0
|
|||
VERBOSE = os.environ.get('REDO_VERBOSE', '') and 1 or 0
|
||||
XTRACE = os.environ.get('REDO_XTRACE', '') and 1 or 0
|
||||
KEEP_GOING = os.environ.get('REDO_KEEP_GOING', '') and 1 or 0
|
||||
RAW_LOGS = os.environ.get('REDO_RAW_LOGS', '') and 1 or 0
|
||||
LOG = atoi(os.environ.get('REDO_LOG', '1')) # defaults on
|
||||
# subprocesses mustn't pretty-print if a parent is running redo-log
|
||||
PRETTY = (not LOG) and atoi(os.environ.get('REDO_PRETTY', '1'))
|
||||
SHUFFLE = os.environ.get('REDO_SHUFFLE', '') and 1 or 0
|
||||
STARTDIR = os.environ.get('REDO_STARTDIR', '')
|
||||
RUNID = atoi(os.environ.get('REDO_RUNID')) or None
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue