From e3ea84741ffbf7d9087c923993ef91489a953aa4 Mon Sep 17 00:00:00 2001 From: Matthias Beyer Date: Wed, 3 Feb 2021 10:33:52 +0100 Subject: Be a bit more verbose in debug output here Signed-off-by: Matthias Beyer --- src/orchestrator/orchestrator.rs | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'src/orchestrator/orchestrator.rs') 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::>() + }); // A list of job run results from dependencies that were received from the tasks for the // dependencies -- cgit v1.2.3