From: Bryan Davis Date: Mon, 11 May 2015 16:36:04 +0000 (-0600) Subject: jobrunner: Change logging level for STARTING messages X-Git-Tag: 1.31.0-rc.0~11436^2 X-Git-Url: https://git.cyclocoop.org/%7B%24admin_url%7Dmembres/%24wgLogo?a=commitdiff_plain;h=9b8da198e071e251d2eb6d3fa9e4f33aa8c72f77;p=lhc%2Fweb%2Fwiklou.git 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 --- 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...