summaryrefslogtreecommitdiffstats
path: root/src/orchestrator/orchestrator.rs
diff options
context:
space:
mode:
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