]> git.proxmox.com Git - proxmox-backup.git/commitdiff
src/backup/chunk_store.rs: disable debug output
authorDietmar Maurer <dietmar@proxmox.com>
Sat, 19 Sep 2020 13:26:21 +0000 (15:26 +0200)
committerDietmar Maurer <dietmar@proxmox.com>
Sat, 19 Sep 2020 13:26:21 +0000 (15:26 +0200)
src/backup/chunk_store.rs

index df7d91423c6f449067b727837e7883be87a11785..9c81ff27ce4942a353dc685f48ff9cf64f80b167 100644 (file)
@@ -104,12 +104,11 @@ impl ChunkStore {
             }
             let percentage = (i*100)/(64*1024);
             if percentage != last_percentage {
-                eprintln!("{}%", percentage);
+                // eprintln!("ChunkStore::create {}%", percentage);
                 last_percentage = percentage;
             }
         }
 
-
         Self::open(name, base)
     }