From d6649d2aa6be0328d7a605a76655923781d147da Mon Sep 17 00:00:00 2001 From: Dylan William Hardison Date: Mon, 2 Apr 2018 16:36:44 -0400 Subject: Bug 1450283 - JobQueue should treat "no jobs" as a trace-level message, and all other logs as info --- Bugzilla/JobQueue.pm | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) (limited to 'Bugzilla/JobQueue.pm') diff --git a/Bugzilla/JobQueue.pm b/Bugzilla/JobQueue.pm index 53b088c6e..afb36673f 100644 --- a/Bugzilla/JobQueue.pm +++ b/Bugzilla/JobQueue.pm @@ -101,7 +101,12 @@ sub debug { my $caller_pkg = caller; local $Log::Log4perl::caller_depth = $Log::Log4perl::caller_depth + 1; my $logger = Log::Log4perl->get_logger($caller_pkg); - $logger->info(@args); + if ($args[0] && $args[0] eq "TheSchwartz::work_once found no jobs") { + $logger->trace(@args); + } + else { + $logger->info(@args); + } } sub work { -- cgit v1.2.3-24-g4f1b