From 9b8da198e071e251d2eb6d3fa9e4f33aa8c72f77 Mon Sep 17 00:00:00 2001 From: Bryan Davis Date: Mon, 11 May 2015 10:36:04 -0600 Subject: [PATCH] jobrunner: Change logging level for STARTING messages Mark debug log events describing the start of processing a job as debug level information rather than informative. Bug: T87521 Change-Id: I1ce3dabf4a344369fe396c5bb056ed5ed6308c87 --- includes/jobqueue/JobRunner.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/jobqueue/JobRunner.php b/includes/jobqueue/JobRunner.php index 0948092e67..f413701ed3 100644 --- a/includes/jobqueue/JobRunner.php +++ b/includes/jobqueue/JobRunner.php @@ -175,7 +175,7 @@ class JobRunner implements LoggerAwareInterface { } $msg = $job->toString() . " STARTING"; - $this->logger->info( $msg ); + $this->logger->debug( $msg ); $this->debugCallback( $msg ); // Run the job... -- 2.20.1