From: Morgan Deters Date: Mon, 4 Feb 2013 21:24:33 +0000 (-0500) Subject: Printing commands as they're executed now requires verbosity 3+ X-Git-Tag: cvc5-1.0.0~7430 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=2c460aacc9b3d52e4c6423fa54a8437b5be5c04b;p=cvc5.git Printing commands as they're executed now requires verbosity 3+ --- diff --git a/NEWS b/NEWS index c25f09f5a..445ba9ecf 100644 --- a/NEWS +++ b/NEWS @@ -7,5 +7,8 @@ Changes since 1.0 * user patterns are now supported in the SMT-LIBv1.2 parser * SMT-LIB get-model output now is easier to machine-parse: contains (model...) * Win32 support via mingw +* for printing commands as they're invoked from the driver, you now need + verbosity of 3 or higher (e.g. -vvv) instead of verbosity 1 or higher (-v). + This allows tracing the solver's activities without having too much output. --- Morgan Deters Mon, 28 Jan 2013 15:26:24 -0500 +-- Morgan Deters Mon, 04 Feb 2013 16:24:20 -0500 diff --git a/src/main/command_executor.cpp b/src/main/command_executor.cpp index 14625f1d8..010d4a6f4 100644 --- a/src/main/command_executor.cpp +++ b/src/main/command_executor.cpp @@ -48,7 +48,7 @@ bool CommandExecutor::doCommand(Command* cmd) return status; } else { - if(d_options[options::verbosity] > 0) { + if(d_options[options::verbosity] > 2) { *d_options[options::out] << "Invoking: " << *cmd << std::endl; }