aboutsummaryrefslogtreecommitdiff
path: root/bpkg/checksum.cxx
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2017-04-18 10:19:16 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2017-04-18 10:19:16 +0200
commite22d3cc6fdecf70d1cdec41ba25911ffcd2dbba4 (patch)
tree24c9adb67975923c5655153aa3bc1cc87e5994a9 /bpkg/checksum.cxx
parent260729bd34c4b71e133a6b86b7302bef4a424ea2 (diff)
Reduce noise at verbosity level 2
Diffstat (limited to 'bpkg/checksum.cxx')
-rw-r--r--bpkg/checksum.cxx8
1 files changed, 4 insertions, 4 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";
}