client writer: do not output chunklist for now on verbose true

Verbosity needs to be a non binary level, as this now is just
debug/development info, for endusers normally to much.

We want to have it available, but with a much higher verbosity level.

Signed-off-by: Thomas Lamprecht <t.lamprecht@proxmox.com>
This commit is contained in:
Thomas Lamprecht 2020-07-23 09:49:29 +02:00
parent 6e1deb158a
commit f40b4fb05a
1 changed files with 1 additions and 1 deletions

View File

@ -573,7 +573,7 @@ impl BackupWriter {
let digest = chunk_info.digest; let digest = chunk_info.digest;
let digest_str = digest_to_hex(&digest); let digest_str = digest_to_hex(&digest);
if verbose { if false && verbose { // TO verbose, needs finer verbosity setting granularity
println!("upload new chunk {} ({} bytes, offset {})", digest_str, println!("upload new chunk {} ({} bytes, offset {})", digest_str,
chunk_info.chunk_len, offset); chunk_info.chunk_len, offset);
} }