From 5f30a38b4aca00161c9f725940bf41d3c6f7dde6 Mon Sep 17 00:00:00 2001 From: Roey Darwish Dror Date: Sun, 2 Dec 2018 16:51:08 +0200 Subject: [PATCH] Add debug log --- src/main.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/main.rs b/src/main.rs index 0bcf002..1127821 100644 --- a/src/main.rs +++ b/src/main.rs @@ -153,6 +153,7 @@ fn create(command: CreateCommand) -> Result<(), Error> { let root_partition = block_device.partition_device_path(3)?; let encrypted_root = if let Some(cryptsetup) = &cryptsetup { + info!("Encrypting the root filesystem"); EncryptedDevice::prepare(&cryptsetup, &root_partition)?; Some(EncryptedDevice::open( cryptsetup,