Skip to content
Snippets Groups Projects
Commit c3e51e28 authored by Stéphane Del Pino's avatar Stéphane Del Pino
Browse files

Reactivate backtrace display as default

parent 3c994f45
No related branches found
No related tags found
1 merge request!168Simplify backtrace output
...@@ -109,8 +109,8 @@ initialize(int& argc, char* argv[]) ...@@ -109,8 +109,8 @@ initialize(int& argc, char* argv[])
bool show_preamble = true; bool show_preamble = true;
app.add_flag("--preamble,!--no-preamble", show_preamble, "Show execution info preamble [default: true]"); app.add_flag("--preamble,!--no-preamble", show_preamble, "Show execution info preamble [default: true]");
bool show_backtrace = false; bool show_backtrace = true;
app.add_flag("-b,--backtrace,!--no-backtrace", show_backtrace, "Show backtrace on failure [default: false]"); app.add_flag("-b,--backtrace,!--no-backtrace", show_backtrace, "Show backtrace on failure [default: true]");
app.add_flag("--signal,!--no-signal", enable_signals, "Catches signals [default: true]"); app.add_flag("--signal,!--no-signal", enable_signals, "Catches signals [default: true]");
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment