From 6e36cef632cd385140a45458b54772ce97adb489 Mon Sep 17 00:00:00 2001 From: Aaron Schulz Date: Thu, 17 Mar 2016 17:50:19 -0700 Subject: [PATCH] Change "COMMIT ENQUEUED" warnings to level INFO These are too unimportant and spammy Change-Id: I2205d9b42014f138ac523967f91df6d340234256 --- 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 ef3d61d96e..0a0a7a2b79 100644 --- a/includes/jobqueue/JobRunner.php +++ b/includes/jobqueue/JobRunner.php @@ -506,7 +506,7 @@ class JobRunner implements LoggerAwareInterface { $ms = intval( 1000 * $dbwSerial->pendingWriteQueryDuration() ); $msg = $job->toString() . " COMMIT ENQUEUED [{$ms}ms of writes]"; - $this->logger->warning( $msg ); + $this->logger->info( $msg ); $this->debugCallback( $msg ); // Wait for an exclusive lock to commit -- 2.20.1