From 6b1da1c166393c3d1781874e3f8c4d7aee82fac1 Mon Sep 17 00:00:00 2001 From: Thomas Lamprecht Date: Thu, 29 Apr 2021 15:24:45 +0200 Subject: [PATCH] file restore: log which filesystems we support Signed-off-by: Thomas Lamprecht --- src/bin/proxmox_restore_daemon/disk.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/bin/proxmox_restore_daemon/disk.rs b/src/bin/proxmox_restore_daemon/disk.rs index b0d5f72d..47c718f8 100644 --- a/src/bin/proxmox_restore_daemon/disk.rs +++ b/src/bin/proxmox_restore_daemon/disk.rs @@ -115,6 +115,8 @@ impl Filesystems { } } + info!("Supported FS: {}", supported_fs.join(", ")); + Ok(Self { supported_fs }) }