From: Aaron Schulz Date: Sat, 26 Apr 2014 23:20:17 +0000 (-0700) Subject: Fixed call to undefined method in TransactionProfiler X-Git-Tag: 1.31.0-rc.0~15995 X-Git-Url: https://git.cyclocoop.org/%7B%24www_url%7Dadmin/compta/banques/?a=commitdiff_plain;h=63b1f29d761d9718b48e26f85f2c95a00ed58021;p=lhc%2Fweb%2Fwiklou.git Fixed call to undefined method in TransactionProfiler Change-Id: I855b514f8b63c7e81935b13df4612f09628142b3 --- 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] );