diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2017-04-18 10:19:16 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2017-04-18 10:19:16 +0200 |
commit | e22d3cc6fdecf70d1cdec41ba25911ffcd2dbba4 (patch) | |
tree | 24c9adb67975923c5655153aa3bc1cc87e5994a9 | |
parent | 260729bd34c4b71e133a6b86b7302bef4a424ea2 (diff) |
Reduce noise at verbosity level 2
-rw-r--r-- | bpkg/checksum.cxx | 8 | ||||
-rw-r--r-- | bpkg/fetch.cxx | 2 |
2 files changed, 5 insertions, 5 deletions
diff --git a/bpkg/checksum.cxx b/bpkg/checksum.cxx index b02ad1c..a76ab55 100644 --- a/bpkg/checksum.cxx +++ b/bpkg/checksum.cxx @@ -78,7 +78,7 @@ namespace bpkg process_path pp (process::path_search (args[0])); - if (verb >= 2) + if (verb >= 3) print_process (args); // Pipe both STDIN and STDOUT. Process exceptions must be handled by @@ -144,7 +144,7 @@ namespace bpkg process_path pp (process::path_search (args[0])); - if (verb >= 2) + if (verb >= 3) print_process (args); // Pipe both STDIN and STDOUT. Process exceptions must be handled by @@ -210,7 +210,7 @@ namespace bpkg process_path pp (process::path_search (args[0])); - if (verb >= 2) + if (verb >= 3) print_process (args); // Pipe both STDIN and STDOUT. Process exceptions must be handled by @@ -292,7 +292,7 @@ namespace bpkg fail << "unable to find 'sha256', 'sha256sum', or 'shasum'" << info << "use --sha256 to specify the sha256 program location"; - if (verb > 1) + if (verb >= 3) info << "using '" << sha256_path << "' as the sha256 program, " << "use --sha256 to override"; } diff --git a/bpkg/fetch.cxx b/bpkg/fetch.cxx index 2c87f6b..c650958 100644 --- a/bpkg/fetch.cxx +++ b/bpkg/fetch.cxx @@ -468,7 +468,7 @@ namespace bpkg fail << "unable to find 'wget', 'curl', or 'fetch'" << info << "use --fetch to specify the fetch program location"; - if (verb > 1) + if (verb >= 3) info << "using '" << fetch_path << "' as the fetch program, " << "use --fetch to override"; } |