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
Branches
Tags
1 merge request!168Simplify backtrace output
......@@ -109,8 +109,8 @@ initialize(int& argc, char* argv[])
bool show_preamble = true;
app.add_flag("--preamble,!--no-preamble", show_preamble, "Show execution info preamble [default: true]");
bool show_backtrace = false;
app.add_flag("-b,--backtrace,!--no-backtrace", show_backtrace, "Show backtrace on failure [default: false]");
bool show_backtrace = true;
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]");
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment