From b29afc2dda34b3b72ece7a7a1a29b7ebb869095b Mon Sep 17 00:00:00 2001 From: Matthias Beyer Date: Sun, 13 Oct 2019 11:02:09 +0200 Subject: [PATCH] Add more debug output Signed-off-by: Matthias Beyer --- bin/core/imag-create/src/main.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/bin/core/imag-create/src/main.rs b/bin/core/imag-create/src/main.rs index 7083f074..d69114ea 100644 --- a/bin/core/imag-create/src/main.rs +++ b/bin/core/imag-create/src/main.rs @@ -57,6 +57,7 @@ fn main() { ui::build_ui); let force = rt.cli().is_present("force"); + debug!("Detected force = {}", force); let ids = rt.ids::() .map_err_trace_exit_unwrap() @@ -65,6 +66,7 @@ fn main() { ::std::process::exit(1); }) .into_iter() + .map(|id| { debug!("id = {}", id); id }) .map(Ok); if force {