MediaWiki  1.27.2
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. More...
 
static appendDebugInfoToApiResult (IContextSource $context, ApiResult $result)
 Append the debug info to given ApiResult. More...
 
static clearLog ()
 Clears internal log array and deprecation tracking. More...
 
static debugMsg ($str, $context=[])
 This is a method to pass messages from wfDebug to the pretty debugger. More...
 
static deprecated ($function, $version=false, $component=false, $callerOffset=2)
 Show a warning that $function is deprecated. More...
 
static getDebugHTML (IContextSource $context)
 Returns the HTML to add to the page for the toolbar. More...
 
static getDebugInfo (IContextSource $context)
 Returns the HTML to add to the page for the toolbar. More...
 
static getHTMLDebugLog ()
 Generate debug log in HTML for displaying at the bottom of the main content area. More...
 
static getLog ()
 Returns internal log array. More...
 
static init ()
 Enabled the debugger and load resource module. More...
 
static log ($str)
 Adds a line to the log. More...
 
static query ($sql, $function, $isMaster)
 Begins profiling on a database query. More...
 
static queryTime ($id)
 Calculates how long a query took. More...
 
static warning ($msg, $callerOffset=1, $level=E_USER_NOTICE, $log= 'auto')
 Adds a warning entry to the log. More...
 

Static Protected Member Functions

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

Static Protected Attributes

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

Static Private Member Functions

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

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 31 of file MWDebug.php.

Member Function Documentation

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 85 of file MWDebug.php.

References OutputPage\addModules().

Referenced by OutputPage\output().

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

Append the debug info to given ApiResult.

Parameters
IContextSource$context
ApiResult$result

Definition at line 486 of file MWDebug.php.

References ApiResult\addValue(), as, log(), ApiResult\setIndexedTagName(), and Sanitizer\stripAllTags().

Referenced by ApiMain\executeAction(), and MWDebugTest\testAppendDebugInfoToApiResultXmlFormat().

static MWDebug::clearLog ( )
static

Clears internal log array and deprecation tracking.

Since
1.19

Definition at line 124 of file MWDebug.php.

Referenced by MWDebugTest\setUp().

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 314 of file MWDebug.php.

References $context, $debug, and global.

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

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

Show a warning that $function is deprecated.

This will send it 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.
  • MediaWiki's debug log, if $wgDevelopmentWarnings is set to false.
Since
1.19
Parameters
string$functionFunction that is deprecated.
string | bool$versionVersion in which the function was deprecated.
string | bool$componentComponent to which the function belongs. If false, it is assumbed 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 184 of file MWDebug.php.

References $version, Html\element(), global, Html\rawElement(), and wfBacktrace().

Referenced by MWDebugTest\testAvoidDuplicateDeprecations(), and MWDebugTest\testAvoidNonConsecutivesDuplicateDeprecations().

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 257 of file MWDebug.php.

References wfDebugBacktrace().

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 427 of file MWDebug.php.

References $debug, $html, global, log(), ResourceLoader\makeConfigSetScript(), and ResourceLoader\makeInlineScript().

Referenced by BaseTemplate\printTrail().

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 520 of file MWDebug.php.

References $debug, $query, $request, $wgRequestTime, $wgVersion, GitInfo\currentBranch(), IContextSource\getLanguage(), IContextSource\getRequest(), global, GitInfo\headSHA1(), GitInfo\headViewUrl(), and wfIsHHVM().

static MWDebug::getFilesIncluded ( IContextSource  $context)
staticprotected

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

Parameters
IContextSource$context
Returns
array

Definition at line 406 of file MWDebug.php.

References $files, as, and IContextSource\getLanguage().

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 460 of file MWDebug.php.

References $debug, $line, $ret, as, and global.

Referenced by Skin\generateDebugHTML().

static MWDebug::getLog ( )
static
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 74 of file MWDebug.php.

Referenced by MWDebugTest\setUp().

static MWDebug::log (   $str)
static

Adds a line to the log.

Since
1.19
Parameters
mixed$str

Definition at line 97 of file MWDebug.php.

References wfGetCaller().

Referenced by appendDebugInfoToApiResult(), getDebugHTML(), MWDebugTest\testAddLog(), and MWDebugTest\testAvoidNonConsecutivesDuplicateDeprecations().

static MWDebug::query (   $sql,
  $function,
  $isMaster 
)
static

Begins profiling on a database query.

Since
1.19
Parameters
string$sql
string$function
bool$isMaster
Returns
int ID number of the query to pass to queryTime or -1 if the debugger is disabled

Definition at line 344 of file MWDebug.php.

References $query.

Referenced by DatabaseBase\query().

static MWDebug::queryTime (   $id)
static

Calculates how long a query took.

Since
1.19
Parameters
int$id

Definition at line 391 of file MWDebug.php.

References $query.

Referenced by DatabaseBase\query().

static MWDebug::sendMessage (   $msg,
  $caller,
  $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
array$callerCaller description get from getCallerDescription()
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 296 of file MWDebug.php.

References wfDebugLog().

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).
Returns
mixed

Definition at line 142 of file MWDebug.php.

References $log, and global.

Referenced by MWDebugTest\testAddWarning(), and MWDebugTest\testAvoidNonConsecutivesDuplicateDeprecations().

Member Data Documentation

array MWDebug::$debug = []
staticprotected

Debug messages from wfDebug().

Definition at line 44 of file MWDebug.php.

array MWDebug::$deprecationWarnings = []
staticprotected

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

Definition at line 66 of file MWDebug.php.

bool MWDebug::$enabled = false
staticprotected

Is the debugger enabled?

Definition at line 58 of file MWDebug.php.

array MWDebug::$log = []
staticprotected

Log lines.

Definition at line 37 of file MWDebug.php.

Referenced by warning().

array MWDebug::$query = []
staticprotected

SQL statements of the database queries.

Definition at line 51 of file MWDebug.php.


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