]> git.proxmox.com Git - proxmox-backup.git/commitdiff
file restore: log which filesystems we support
authorThomas Lamprecht <t.lamprecht@proxmox.com>
Thu, 29 Apr 2021 13:24:45 +0000 (15:24 +0200)
committerThomas Lamprecht <t.lamprecht@proxmox.com>
Thu, 29 Apr 2021 13:24:45 +0000 (15:24 +0200)
Signed-off-by: Thomas Lamprecht <t.lamprecht@proxmox.com>
src/bin/proxmox_restore_daemon/disk.rs

index b0d5f72d45abc6ed0158bb1eaa62930d891a5c75..47c718f8200c032e4240d35fae0e6d8e7eb674ca 100644 (file)
@@ -115,6 +115,8 @@ impl Filesystems {
             }
         }
 
+        info!("Supported FS: {}", supported_fs.join(", "));
+
         Ok(Self { supported_fs })
     }