MediaWiki REL1_37
MWDebug Class Reference

New debugger system that outputs a toolbar on page view. More...

Static Public Member Functions

static addModules (OutputPage $out)
 Add ResourceLoader modules to the OutputPage object if debugging is enabled.
 
static appendDebugInfoToApiResult (IContextSource $context, ApiResult $result)
 Append the debug info to given ApiResult.
 
static clearDeprecationFilters ()
 Clear all deprecation filters.
 
static clearLog ()
 Clears internal log array and deprecation tracking.
 
static debugMsg ( $str, $context=[])
 This is a method to pass messages from wfDebug to the pretty debugger.
 
static deinit ()
 Disable the debugger.
 
static deprecated ( $function, $version=false, $component=false, $callerOffset=2)
 Show a warning that $function is deprecated.
 
static deprecatedMsg ( $msg, $version=false, $component=false, $callerOffset=2)
 Log a deprecation warning with arbitrary message text.
 
static detectDeprecatedOverride ( $instance, $class, $method, $version=false, $component=false, $callerOffset=2)
 Show a warning if $method declared in $class is overridden in $instance.
 
static filterDeprecationForTest ( $regex)
 Deprecation messages matching the supplied regex will be suppressed.
 
static getDebugHTML (IContextSource $context)
 Returns the HTML to add to the page for the toolbar.
 
static getDebugInfo (IContextSource $context)
 Returns the HTML to add to the page for the toolbar.
 
static getHTMLDebugLog ()
 Generate debug log in HTML for displaying at the bottom of the main content area.
 
static getLog ()
 Returns internal log array.
 
static init ()
 Enabled the debugger and load resource module.
 
static log ( $str)
 Adds a line to the log.
 
static parseCallerDescription ( $msg)
 Append a caller description to an error message.
 
static query ( $sql, $function, $runTime, $dbhost)
 Begins profiling on a database query.
 
static sendRawDeprecated ( $msg, $sendToLog=true, $callerFunc='')
 Send a raw deprecation message to the log and the debug toolbar, without filtering of duplicate messages.
 
static setup ()
 
static warning ( $msg, $callerOffset=1, $level=E_USER_NOTICE, $log='auto')
 Adds a warning entry to the log.
 

Static Protected Member Functions

static getFilesIncluded (IContextSource $context)
 Returns a list of files included, along with their size.
 

Static Protected Attributes

static array $debug = []
 Debug messages from wfDebug().
 
static string[] $deprecationFilters = []
 Deprecation filter regexes.
 
static array $deprecationWarnings = []
 Array of functions that have already been warned, formatted function-caller to prevent a buttload of warnings.
 
static bool $enabled = false
 Is the debugger enabled?
 
static array $log = []
 Log lines.
 
static array $query = []
 SQL statements of the database queries.
 

Static Private Member Functions

static formatCallerDescription ( $msg, $caller)
 Append a caller description to an error message.
 
static getCallerDescription ( $callerOffset)
 Get an array describing the calling function at a specified offset.
 
static sendMessage ( $msg, $group, $level)
 Send a message to the debug log and optionally also trigger a PHP error, depending on the $level argument.
 

Detailed Description

New debugger system that outputs a toolbar on page view.

By default, most methods do nothing ( self::$enabled = false ). You have to explicitly call MWDebug::init() to enabled them.

Since
1.19

Definition at line 33 of file MWDebug.php.

Member Function Documentation

◆ addModules()

static MWDebug::addModules ( OutputPage  $out)
static

Add ResourceLoader modules to the OutputPage object if debugging is enabled.

Since
1.19
Parameters
OutputPage$out

Definition at line 125 of file MWDebug.php.

References OutputPage\addModules().

◆ appendDebugInfoToApiResult()

static MWDebug::appendDebugInfoToApiResult ( IContextSource  $context,
ApiResult  $result 
)
static

Append the debug info to given ApiResult.

Parameters
IContextSource$context
ApiResult$result

Definition at line 669 of file MWDebug.php.

References ApiResult\addValue().

◆ clearDeprecationFilters()

static MWDebug::clearDeprecationFilters ( )
static

Clear all deprecation filters.

Definition at line 408 of file MWDebug.php.

◆ clearLog()

static MWDebug::clearLog ( )
static

Clears internal log array and deprecation tracking.

Since
1.19

Definition at line 164 of file MWDebug.php.

◆ debugMsg()

static MWDebug::debugMsg (   $str,
  $context = [] 
)
static

This is a method to pass messages from wfDebug to the pretty debugger.

Do NOT use this method, use MWDebug::log or wfDebug()

Since
1.19
Parameters
string$str
array$context

Definition at line 512 of file MWDebug.php.

References $wgDebugComments, and $wgShowDebug.

Referenced by MediaWiki\Logger\LegacyLogger\log().

◆ deinit()

static MWDebug::deinit ( )
static

Disable the debugger.

Since
1.28

Definition at line 114 of file MWDebug.php.

◆ deprecated()

static MWDebug::deprecated (   $function,
  $version = false,
  $component = false,
  $callerOffset = 2 
)
static

Show a warning that $function is deprecated.

See also
deprecatedMsg()
Since
1.19
Parameters
string$functionFunction that is deprecated.
string | false$versionVersion in which the function was deprecated.
string | bool$componentComponent to which the function belongs. If false, it is assumed the function is in MediaWiki core.
int$callerOffsetHow far up the callstack is the original caller. 2 = function that called the function that called MWDebug::deprecated() (Added in 1.20).

Definition at line 221 of file MWDebug.php.

◆ deprecatedMsg()

static MWDebug::deprecatedMsg (   $msg,
  $version = false,
  $component = false,
  $callerOffset = 2 
)
static

Log a deprecation warning with arbitrary message text.

A caller description will be appended. If the message has already been sent for this caller, it won't be sent again.

Although there are component and version parameters, they are not automatically appended to the message. The message text should include information about when the thing was deprecated.

The warning will be sent to the following locations:

  • Debug toolbar, with one item per function and caller, if $wgDebugToolbar is set to true.
  • PHP's error log, with level E_USER_DEPRECATED, if $wgDevelopmentWarnings is set to true. This is the case in phpunit tests per default, and will cause tests to fail.
  • MediaWiki's debug log, if $wgDevelopmentWarnings is set to false.
Since
1.35
Parameters
string$msgThe message
string | false$versionVersion of MediaWiki that the function was deprecated in.
string | bool$componentComponent to which the function belongs. If false, it is assumed the function is in MediaWiki core.
int | false$callerOffsetHow far up the call stack is the original caller. 2 = function that called the function that called us. If false, the caller description will not be appended.

Definition at line 303 of file MWDebug.php.

References $wgDeprecationReleaseLimit.

◆ detectDeprecatedOverride()

static MWDebug::detectDeprecatedOverride (   $instance,
  $class,
  $method,
  $version = false,
  $component = false,
  $callerOffset = 2 
)
static

Show a warning if $method declared in $class is overridden in $instance.

Since
1.36
See also
deprecatedMsg()

phpcs:ignore MediaWiki.Commenting.FunctionComment.ObjectTypeHintParam

Parameters
object$instanceObject on which to detect deprecated overrides (typically $this).
string$classClass declaring the deprecated method (typically CLASS )
string$methodThe name of the deprecated method.
string | false$versionVersion in which the method was deprecated. Does not issue deprecation warnings if false.
string | bool$componentComponent to which the class belongs. If false, it is assumed the class is in MediaWiki core.
int$callerOffsetHow far up the callstack is the original caller. 2 = function that called the function that called MWDebug::detectDeprecatedOverride()
Returns
bool True if the method was overridden, false otherwise. If the method was overridden, it should be called. The deprecated method's default implementation should call MWDebug::deprecated().

Definition at line 255 of file MWDebug.php.

◆ filterDeprecationForTest()

static MWDebug::filterDeprecationForTest (   $regex)
static

Deprecation messages matching the supplied regex will be suppressed.

Use this to filter deprecation warnings when testing deprecated code.

Parameters
string$regex

Definition at line 398 of file MWDebug.php.

◆ formatCallerDescription()

static MWDebug::formatCallerDescription (   $msg,
  $caller 
)
staticprivate

Append a caller description to an error message.

Parameters
string$msg
array$callerCaller description from getCallerDescription()
Returns
string

Definition at line 456 of file MWDebug.php.

◆ getCallerDescription()

static MWDebug::getCallerDescription (   $callerOffset)
staticprivate

Get an array describing the calling function at a specified offset.

Parameters
int$callerOffsetHow far up the callstack is the original caller. 0 = function that called getCallerDescription()
Returns
array Array with two keys: 'file' and 'func'

Definition at line 419 of file MWDebug.php.

References $file, and wfDebugBacktrace().

◆ getDebugHTML()

static MWDebug::getDebugHTML ( IContextSource  $context)
static

Returns the HTML to add to the page for the toolbar.

Since
1.19
Parameters
IContextSource$context
Returns
string

Definition at line 609 of file MWDebug.php.

References $wgDebugComments, IContextSource\getOutput(), ResourceLoader\makeConfigSetScript(), and ResourceLoader\makeInlineScript().

◆ getDebugInfo()

static MWDebug::getDebugInfo ( IContextSource  $context)
static

Returns the HTML to add to the page for the toolbar.

Parameters
IContextSource$context
Returns
array

Definition at line 703 of file MWDebug.php.

References $debug, GitInfo\currentBranch(), IContextSource\getLanguage(), IContextSource\getRequest(), GitInfo\headSHA1(), GitInfo\headViewUrl(), GitInfo\isSHA1(), and MW_VERSION.

◆ getFilesIncluded()

static MWDebug::getFilesIncluded ( IContextSource  $context)
staticprotected

Returns a list of files included, along with their size.

Parameters
IContextSource$context
Returns
array

Definition at line 588 of file MWDebug.php.

References $file, and IContextSource\getLanguage().

◆ getHTMLDebugLog()

static MWDebug::getHTMLDebugLog ( )
static

Generate debug log in HTML for displaying at the bottom of the main content area.

If $wgShowDebug is false, an empty string is always returned.

Since
1.20
Returns
string HTML fragment

Definition at line 643 of file MWDebug.php.

References $line, and $wgShowDebug.

◆ getLog()

static MWDebug::getLog ( )
static

Returns internal log array.

Since
1.19
Returns
array

Definition at line 156 of file MWDebug.php.

◆ init()

static MWDebug::init ( )
static

Enabled the debugger and load resource module.

This is called by Setup.php when $wgDebugToolbar is true.

Since
1.19

Definition at line 105 of file MWDebug.php.

◆ log()

static MWDebug::log (   $str)
static

Adds a line to the log.

Since
1.19
Parameters
mixed$str

Definition at line 137 of file MWDebug.php.

References wfGetCaller().

◆ parseCallerDescription()

static MWDebug::parseCallerDescription (   $msg)
static

Append a caller description to an error message.

Access: internal
For use by MWExceptionHandler to override 'exception.file' in error logs.
Parameters
string$msgFormatted message from formatCallerDescription() and getCallerDescription()
Returns
null|array<string,string> Null if unable to recognise all parts, or array with:
  • 'file': string of file path
  • 'line': string of line number
  • 'func': string of function or method name
  • 'message': Re-formatted version of $msg for use with ErrorException, so as to not include file/line twice.

Definition at line 473 of file MWDebug.php.

◆ query()

static MWDebug::query (   $sql,
  $function,
  $runTime,
  $dbhost 
)
static

Begins profiling on a database query.

Since
1.19
Parameters
string$sql
string$function
float$runTimeQuery run time
string$dbhost
Returns
bool True if debugger is enabled, false otherwise

Definition at line 543 of file MWDebug.php.

Referenced by MediaWiki\Logger\LegacyLogger\log().

◆ sendMessage()

static MWDebug::sendMessage (   $msg,
  $group,
  $level 
)
staticprivate

Send a message to the debug log and optionally also trigger a PHP error, depending on the $level argument.

Parameters
string$msgMessage to send
string$groupLog group on which to send the message
int | bool$levelError level to use; set to false to not trigger an error

Definition at line 496 of file MWDebug.php.

References wfDebugLog().

◆ sendRawDeprecated()

static MWDebug::sendRawDeprecated (   $msg,
  $sendToLog = true,
  $callerFunc = '' 
)
static

Send a raw deprecation message to the log and the debug toolbar, without filtering of duplicate messages.

A caller description will not be appended.

Parameters
string$msgThe complete message including relevant caller information.
bool$sendToLogIf true, the message will be sent to the debug toolbar, the debug log, and raised as a warning to PHP. If false, the message will only be sent to the debug toolbar.
string$callerFuncThe caller, for display in the debug toolbar's caller column.

Definition at line 367 of file MWDebug.php.

References wfBacktrace().

◆ setup()

static MWDebug::setup ( )
static
Access: internal
For use by Setup.php only.

Definition at line 78 of file MWDebug.php.

References $wgCommandLineMode, $wgDebugToolbar, $wgUseCdn, and $wgUseFileCache.

◆ warning()

static MWDebug::warning (   $msg,
  $callerOffset = 1,
  $level = E_USER_NOTICE,
  $log = 'auto' 
)
static

Adds a warning entry to the log.

Since
1.19
Parameters
string$msg
int$callerOffset
int$levelA PHP error level. See sendMessage()
string$log'production' will always trigger a php error, 'auto' will trigger an error if $wgDevelopmentWarnings is true, and 'debug' will only write to the debug log(s).

Definition at line 180 of file MWDebug.php.

References $wgDevelopmentWarnings.

Member Data Documentation

◆ $debug

array MWDebug::$debug = []
staticprotected

Debug messages from wfDebug().

Definition at line 46 of file MWDebug.php.

◆ $deprecationFilters

string [] MWDebug::$deprecationFilters = []
staticprotected

Deprecation filter regexes.

Definition at line 73 of file MWDebug.php.

◆ $deprecationWarnings

array MWDebug::$deprecationWarnings = []
staticprotected

Array of functions that have already been warned, formatted function-caller to prevent a buttload of warnings.

Definition at line 68 of file MWDebug.php.

◆ $enabled

bool MWDebug::$enabled = false
staticprotected

Is the debugger enabled?

Definition at line 60 of file MWDebug.php.

◆ $log

array MWDebug::$log = []
staticprotected

Log lines.

Definition at line 39 of file MWDebug.php.

◆ $query

array MWDebug::$query = []
staticprotected

SQL statements of the database queries.

Definition at line 53 of file MWDebug.php.


The documentation for this class was generated from the following file: