Skip to content

Commit 911dbc9

Browse files
committed
reduce default verbosity of cprover binary
This sets a new default for the verbosity of the cprover binary, to match the level of the cbmc binary.
1 parent 2ffc4c9 commit 911dbc9

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

src/cprover/cprover_parse_options.cpp

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -135,6 +135,11 @@ int cprover_parse_optionst::main()
135135
console_message_handlert message_handler;
136136
null_message_handlert null_message_handler;
137137

138+
if(cmdline.isset("verbose"))
139+
message_handler.set_verbosity(messaget::M_PROGRESS);
140+
else
141+
message_handler.set_verbosity(messaget::M_STATUS);
142+
138143
optionst options;
139144
auto goto_model =
140145
initialize_goto_model(cmdline.args, message_handler, options);

0 commit comments

Comments
 (0)