From 264092169c8332c2068c9c041a52ef84469da539 Mon Sep 17 00:00:00 2001 From: Graham Christensen Date: Wed, 8 Dec 2021 09:25:27 -0500 Subject: [PATCH] hydra-eval-jobset: log fetches and evaluations --- src/script/hydra-eval-jobset | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/script/hydra-eval-jobset b/src/script/hydra-eval-jobset index 7a9af09f..f902a0be 100755 --- a/src/script/hydra-eval-jobset +++ b/src/script/hydra-eval-jobset @@ -235,6 +235,8 @@ sub fetchInput { my ($plugins, $db, $project, $jobset, $name, $type, $value, $emailresponsible) = @_; my @inputs; + print STDERR "(" . $project->name . ":" . $jobset->name . ") Fetching input `$name` ($type) $value\n"; + if ($type eq "build") { @inputs = fetchInputBuild($db, $project, $jobset, $name, $value); } @@ -340,6 +342,8 @@ sub inputsToArgs { sub evalJobs { my ($inputInfo, $nixExprInputName, $nixExprPath, $flakeRef) = @_; + print STDERR "Evaluating...\n"; + my @cmd; if (defined $flakeRef) {