summaryrefslogtreecommitdiffstats
path: root/src/orchestrator/orchestrator.rs
diff options
context:
space:
mode:
authorMatthias Beyer <matthias.beyer@atos.net>2021-02-03 10:33:52 +0100
committerMatthias Beyer <matthias.beyer@atos.net>2021-02-03 10:33:52 +0100
commite3ea84741ffbf7d9087c923993ef91489a953aa4 (patch)
tree389ee2175c90d697f5c246f5edc7d17465a79e63 /src/orchestrator/orchestrator.rs
parent453207c11c5dfe1a7916b04035666f423bdcc3d8 (diff)
Be a bit more verbose in debug output here
Signed-off-by: Matthias Beyer <matthias.beyer@atos.net>
Diffstat (limited to 'src/orchestrator/orchestrator.rs')
-rw-r--r--src/orchestrator/orchestrator.rs5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/orchestrator/orchestrator.rs b/src/orchestrator/orchestrator.rs
index 93d2d01..d57324b 100644
--- a/src/orchestrator/orchestrator.rs
+++ b/src/orchestrator/orchestrator.rs
@@ -379,7 +379,10 @@ impl<'a> JobTask<'a> {
/// This function runs the job from this object on the scheduler as soon as all dependend jobs
/// returned successfully.
async fn run(mut self) -> Result<()> {
- trace!("[{}]: Running", self.uuid);
+ debug!("[{}]: Running", self.uuid);
+ debug!("[{}]: Waiting for dependencies = {:?}", self.uuid, {
+ self.jobdef.dependencies.iter().map(|u| u.to_string()).collect::<Vec<String>>()
+ });
// A list of job run results from dependencies that were received from the tasks for the
// dependencies