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/algorithm.cxx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'build/algorithm.cxx') diff --git a/build/algorithm.cxx b/build/algorithm.cxx index 9a2f9fb..fb6c72a 100644 --- a/build/algorithm.cxx +++ b/build/algorithm.cxx @@ -234,8 +234,8 @@ namespace build diag_record dr; dr << fail << "no rule to " << diag_do (a, t); - if (verb < 3) - dr << info << "re-run with --verbose 3 for more information"; + if (verb < 4) + dr << info << "re-run with --verbose 4 for more information"; return r; } @@ -333,7 +333,7 @@ namespace build if (!d.sub (out_root) || d == out_root) return; - level5 ([&]{trace << "for " << t;}); + level6 ([&]{trace << "for " << t;}); fsdir& dt (search (d, string (), nullptr, &s)); match (a, dt); -- cgit v1.1