Default to tracing being disabled in C++, it will be turned
on in python. Fix the trace start code so it actually starts when it is suppsed to. Make the Exec tracing stuff obey the trace enabled flag. --HG-- extra : convert_revision : 634ba0b4f52345d4bf40d43e239cef7ef43e7691
This commit is contained in:
@@ -292,11 +292,12 @@ def main():
|
||||
for flag in off_flags:
|
||||
internal.trace.clear(flag)
|
||||
|
||||
if options.trace_start is not None:
|
||||
internal.trace.enabled = False
|
||||
if options.trace_start:
|
||||
def enable_trace():
|
||||
internal.event.enabled = True
|
||||
internal.event.create(enable_trace, options.trace_start)
|
||||
internal.trace.cvar.enabled = True
|
||||
internal.event.create(enable_trace, int(options.trace_start))
|
||||
else:
|
||||
internal.trace.enabled = True
|
||||
|
||||
internal.trace.output(options.trace_file)
|
||||
|
||||
|
||||
Reference in New Issue
Block a user