]> git.proxmox.com Git - proxmox-backup.git/commitdiff
GC: improve task logs
authorThomas Lamprecht <t.lamprecht@proxmox.com>
Thu, 29 Oct 2020 13:45:32 +0000 (14:45 +0100)
committerThomas Lamprecht <t.lamprecht@proxmox.com>
Thu, 29 Oct 2020 13:47:39 +0000 (14:47 +0100)
Make it more clear that removed files are chunks (not indexes or
something like that, user cannot know that we do not touch them here)

Signed-off-by: Thomas Lamprecht <t.lamprecht@proxmox.com>
src/backup/datastore.rs

index 0412166803b5b5424dcb8c584fb4dd71059bb07d..42f95f16bc92fc414bda9c8d2fda5bd6fbe4baa8 100644 (file)
@@ -559,11 +559,11 @@ impl DataStore {
                 );
             }
             if gc_status.removed_bad > 0 {
-                crate::task_log!(worker, "Removed bad files: {}", gc_status.removed_bad);
+                crate::task_log!(worker, "Removed bad chunks: {}", gc_status.removed_bad);
             }
 
             if gc_status.still_bad > 0 {
-                crate::task_log!(worker, "Bad chunks: {}", gc_status.still_bad);
+                crate::task_log!(worker, "Leftover bad chunks: {}", gc_status.still_bad);
             }
 
             crate::task_log!(