hydra-queue-{runner,evaluator}: don't clutter the system log with debug messages

This commit is contained in:
Peter Simons 2013-03-23 13:31:28 +01:00 committed by Eelco Dolstra
parent 52a9f1a14e
commit 5ffc925ae7
2 changed files with 3 additions and 3 deletions

View file

@ -301,7 +301,7 @@ while (1) {
# isn't updated properly. # isn't updated properly.
sleep 1; sleep 1;
} else { } else {
print STDERR "sleeping...\n"; # print STDERR "sleeping...\n";
sleep 30; sleep 30;
} }
}; };

View file

@ -69,7 +69,7 @@ sub findBuildDependencyInQueue {
sub checkBuilds { sub checkBuilds {
print "looking for runnable builds...\n"; # print "looking for runnable builds...\n";
my @buildsStarted; my @buildsStarted;
@ -182,6 +182,6 @@ while (1) {
}; };
warn $@ if $@; warn $@ if $@;
print "sleeping...\n"; # print "sleeping...\n";
sleep(5); sleep(5);
} }