summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatthias Beyer <matthias.beyer@atos.net>2021-06-16 16:27:12 +0200
committerMatthias Beyer <matthias.beyer@atos.net>2021-06-16 16:27:12 +0200
commit606d9bcd39098f6b0ff8efc166a68a8ad0652c61 (patch)
tree6f06685c45c0f01275806dd7452397e7f9dd5499
parentedba2de22743ed7aeb5f2661f8c23fee681711bf (diff)
Add more trace output
Signed-off-by: Matthias Beyer <matthias.beyer@atos.net>
-rw-r--r--src/endpoint/configured.rs1
-rw-r--r--src/orchestrator/orchestrator.rs1
2 files changed, 2 insertions, 0 deletions
diff --git a/src/endpoint/configured.rs b/src/endpoint/configured.rs
index 7dc2ba7..badbc8d 100644
--- a/src/endpoint/configured.rs
+++ b/src/endpoint/configured.rs
@@ -640,6 +640,7 @@ impl<'a> PreparedContainer<'a> {
art.display()
)
})?;
+ trace!("Successfully read {} into buffer", art.display());
let r = container
.copy_file_into(&destination, &buf)
diff --git a/src/orchestrator/orchestrator.rs b/src/orchestrator/orchestrator.rs
index 113b756..7a36f97 100644
--- a/src/orchestrator/orchestrator.rs
+++ b/src/orchestrator/orchestrator.rs
@@ -383,6 +383,7 @@ impl<'a> Orchestrator<'a> {
let multibar_block = tokio::task::spawn_blocking(move || multibar.join());
let (_, jobs_result) = tokio::join!(multibar_block, running_jobs.collect::<Result<()>>());
let _ = jobs_result?;
+ trace!("All jobs finished");
match root_receiver.recv().await {
None => Err(anyhow!("No result received...")),
Some(Ok(results)) => {