summaryrefslogtreecommitdiff
path: root/src/main
diff options
context:
space:
mode:
authorMorgan Deters <mdeters@cs.nyu.edu>2013-02-04 16:24:33 -0500
committerMorgan Deters <mdeters@cs.nyu.edu>2013-02-04 16:37:04 -0500
commit2c460aacc9b3d52e4c6423fa54a8437b5be5c04b (patch)
treea0d91d70a2c075fdfe054299c7d0a583f52b44e2 /src/main
parentcc9733246f9f50625d049ee9aa6b12aff49cacc4 (diff)
Printing commands as they're executed now requires verbosity 3+
Diffstat (limited to 'src/main')
-rw-r--r--src/main/command_executor.cpp2
1 files changed, 1 insertions, 1 deletions
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;
}
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback