jobrunner: Change logging level for STARTING messages
authorBryan Davis <bd808@wikimedia.org>
Mon, 11 May 2015 16:36:04 +0000 (10:36 -0600)
committerBryan Davis <bd808@wikimedia.org>
Mon, 11 May 2015 16:36:04 +0000 (10:36 -0600)
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

index 0948092..f413701 100644 (file)
@@ -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...