From eb264e1892c2a1379fa3bcab9aefea219e8e7138 Mon Sep 17 00:00:00 2001 From: Boris Kolpackov Date: Tue, 8 Sep 2015 10:56:32 +0200 Subject: Rework diagnostics verbosity, add quiet mode/option --- build/operation.cxx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'build/operation.cxx') 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 (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 (v)); - level4 ([&]{trace << diag_doing (a, t);}); + level5 ([&]{trace << diag_doing (a, t);}); switch (execute (a, t)) { -- cgit v1.1