Skip to content

reduce default verbosity of cprover binary #8352

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jun 21, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions src/cprover/cprover_parse_options.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -135,6 +135,11 @@
console_message_handlert message_handler;
null_message_handlert null_message_handler;

if(cmdline.isset("verbose"))
message_handler.set_verbosity(messaget::M_PROGRESS);

Check warning on line 139 in src/cprover/cprover_parse_options.cpp

View check run for this annotation

Codecov / codecov/patch

src/cprover/cprover_parse_options.cpp#L139

Added line #L139 was not covered by tests
else
message_handler.set_verbosity(messaget::M_STATUS);

optionst options;
auto goto_model =
initialize_goto_model(cmdline.args, message_handler, options);
Expand Down
Loading