diff --git a/lib/lxc.sh b/lib/lxc.sh index 6234615..5bb289c 100644 --- a/lib/lxc.sh +++ b/lib/lxc.sh @@ -40,7 +40,7 @@ CREATE_LXC_SNAPSHOT () { # Check if the snapshot already exist if ! LXC_SNAPSHOT_EXISTS "$snapname" then - log_debug "Creating snapshot $snapname ..." + log_info "(Creating snapshot $snapname ...)" lxc snapshot $LXC_NAME $snapname fi diff --git a/lib/tests.sh b/lib/tests.sh index aa78c17..17c35ed 100644 --- a/lib/tests.sh +++ b/lib/tests.sh @@ -83,11 +83,10 @@ _LOAD_SNAPSHOT_OR_INSTALL_APP () { log_warning "Expected to find an existing snapshot $snapname but it doesn't exist yet .. will attempt to create it" LOAD_LXC_SNAPSHOT snap0 \ &&_INSTALL_APP "path=$check_path" \ - && log_debug "(Creating a snapshot for $_install_type installation.)" \ && CREATE_LXC_SNAPSHOT $snapname else # Or uses an existing snapshot - log_debug "(Reusing an existing snapshot for $_install_type installation.)" \ + log_info "(Reusing an existing snapshot $snapname.)" \ && LOAD_LXC_SNAPSHOT $snapname fi }