tape restore: simplify log (list datastores on single line)

This commit is contained in:
Dietmar Maurer 2021-04-16 11:35:05 +02:00
parent 0f4721f305
commit 5e4d81e957
1 changed files with 11 additions and 5 deletions

View File

@ -305,11 +305,17 @@ pub fn restore(
task_log!(worker, "Encryption key fingerprint: {}", fingerprint);
}
task_log!(worker, "Pool: {}", pool);
task_log!(worker, "Datastore(s):");
store_map
.used_datastores()
.iter()
.for_each(|store| task_log!(worker, "\t{}", store));
task_log!(
worker,
"Datastore(s): {}",
store_map
.used_datastores()
.into_iter()
.map(String::from)
.collect::<Vec<String>>()
.join(", "),
);
task_log!(worker, "Drive: {}", drive);
task_log!(
worker,