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:
parent
6e1deb158a
commit
f40b4fb05a
|
@ -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);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue