Only send DB query profiling to MWDebug::query

This should avoid massive dberror log spam in jenkins.

Change-Id: Ifa60843e78b99921768e7a62109c505ff9330e41
This commit is contained in:
Aaron Schulz 2016-09-20 15:42:00 -07:00
parent 144b1e9107
commit e861191b2c

View file

@ -94,6 +94,13 @@ class LegacyLogger extends AbstractLogger {
* @return null
*/
public function log( $level, $message, array $context = [] ) {
if ( $this->channel === 'DBQuery' && isset( $context['method'] )
&& isset( $context['master'] ) && isset( $context['runtime'] )
) {
MWDebug::query( $message, $context['method'], $context['master'], $context['runtime'] );
return; // only send profiling data to MWDebug profiling
}
if ( isset( self::$dbChannels[$this->channel] )
&& isset( self::$levelMapping[$level] )
&& self::$levelMapping[$level] >= LogLevel::ERROR
@ -109,11 +116,7 @@ class LegacyLogger extends AbstractLogger {
$destination = self::destination( $effectiveChannel, $message, $context );
self::emit( $text, $destination );
}
if ( $this->channel === 'DBQuery' && isset( $context['method'] )
&& isset( $context['master'] ) && isset( $context['runtime'] )
) {
MWDebug::query( $message, $context['method'], $context['master'], $context['runtime'] );
} elseif ( !isset( $context['private'] ) || !$context['private'] ) {
if ( !isset( $context['private'] ) || !$context['private'] ) {
// Add to debug toolbar if not marked as "private"
MWDebug::debugMsg( $message, [ 'channel' => $this->channel ] + $context );
}