aboutsummaryrefslogtreecommitdiff
path: root/build/operation.cxx
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2015-09-08 10:56:32 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2015-09-08 10:56:32 +0200
commiteb264e1892c2a1379fa3bcab9aefea219e8e7138 (patch)
tree1031f859076b2d8f117a2948ec1184a5536f9cbc /build/operation.cxx
parent55471ef43695408bae2237374be4637c302d1c87 (diff)
Rework diagnostics verbosity, add quiet mode/option
Diffstat (limited to 'build/operation.cxx')
-rw-r--r--build/operation.cxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/build/operation.cxx b/build/operation.cxx
index 9cc8025..b92479b 100644
--- a/build/operation.cxx
+++ b/build/operation.cxx
@@ -93,17 +93,17 @@ namespace build
{
tracer trace ("match");
- if (verb >= 5)
+ if (verb >= 6)
dump (a);
for (void* vt: ts)
{
target& t (*static_cast<target*> (vt));
- level4 ([&]{trace << "matching " << t;});
+ level5 ([&]{trace << "matching " << t;});
match (a, t);
}
- if (verb >= 5)
+ if (verb >= 6)
dump (a);
}
@@ -122,7 +122,7 @@ namespace build
{
target& t (*static_cast<target*> (v));
- level4 ([&]{trace << diag_doing (a, t);});
+ level5 ([&]{trace << diag_doing (a, t);});
switch (execute (a, t))
{