From 63b1f29d761d9718b48e26f85f2c95a00ed58021 Mon Sep 17 00:00:00 2001 From: Aaron Schulz Date: Sat, 26 Apr 2014 16:20:17 -0700 Subject: [PATCH] Fixed call to undefined method in TransactionProfiler Change-Id: I855b514f8b63c7e81935b13df4612f09628142b3 --- includes/profiler/Profiler.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/profiler/Profiler.php b/includes/profiler/Profiler.php index 7f63bb2437..b709498795 100644 --- a/includes/profiler/Profiler.php +++ b/includes/profiler/Profiler.php @@ -431,7 +431,7 @@ class TransactionProfiler { list( $method, $realtime ) = $info; $msg .= sprintf( "%d\t%.6f\t%s\n", $i, $realtime, $method ); } - $this->debugGroup( 'DBPerformance', $msg ); + wfDebugLog( 'DBPerformance', $msg ); } unset( $this->mDBTrxHoldingLocks[$name] ); unset( $this->mDBTrxMethodTimes[$name] ); -- 2.20.1