mirror of
https://github.com/felixfoertsch/wordpress-dev-env.git
synced 2026-04-18 07:18:43 +02:00
111 lines
2.7 KiB
PHP
111 lines
2.7 KiB
PHP
<?php
|
|
/**
|
|
* A convenience class for wrapping certain user-facing functionality.
|
|
*
|
|
* @package query-monitor
|
|
*/
|
|
|
|
class QM {
|
|
|
|
public static function emergency( $message, array $context = array() ) {
|
|
/**
|
|
* Fires when an `emergency` level message is logged.
|
|
*
|
|
* @since 3.1.0
|
|
*
|
|
* @param string $message The message.
|
|
* @param array $context The context passed.
|
|
*/
|
|
do_action( 'qm/emergency', $message, $context );
|
|
}
|
|
|
|
public static function alert( $message, array $context = array() ) {
|
|
/**
|
|
* Fires when an `alert` level message is logged.
|
|
*
|
|
* @since 3.1.0
|
|
*
|
|
* @param string $message The message.
|
|
* @param array $context The context passed.
|
|
*/
|
|
do_action( 'qm/alert', $message, $context );
|
|
}
|
|
|
|
public static function critical( $message, array $context = array() ) {
|
|
/**
|
|
* Fires when a `critical` level message is logged.
|
|
*
|
|
* @since 3.1.0
|
|
*
|
|
* @param string $message The message.
|
|
* @param array $context The context passed.
|
|
*/
|
|
do_action( 'qm/critical', $message, $context );
|
|
}
|
|
|
|
public static function error( $message, array $context = array() ) {
|
|
/**
|
|
* Fires when an `error` level message is logged.
|
|
*
|
|
* @since 3.1.0
|
|
*
|
|
* @param string $message The message.
|
|
* @param array $context The context passed.
|
|
*/
|
|
do_action( 'qm/error', $message, $context );
|
|
}
|
|
|
|
public static function warning( $message, array $context = array() ) {
|
|
/**
|
|
* Fires when a `warning` level message is logged.
|
|
*
|
|
* @since 3.1.0
|
|
*
|
|
* @param string $message The message.
|
|
* @param array $context The context passed.
|
|
*/
|
|
do_action( 'qm/warning', $message, $context );
|
|
}
|
|
|
|
public static function notice( $message, array $context = array() ) {
|
|
/**
|
|
* Fires when a `notice` level message is logged.
|
|
*
|
|
* @since 3.1.0
|
|
*
|
|
* @param string $message The message.
|
|
* @param array $context The context passed.
|
|
*/
|
|
do_action( 'qm/notice', $message, $context );
|
|
}
|
|
|
|
public static function info( $message, array $context = array() ) {
|
|
/**
|
|
* Fires when an `info` level message is logged.
|
|
*
|
|
* @since 3.1.0
|
|
*
|
|
* @param string $message The message.
|
|
* @param array $context The context passed.
|
|
*/
|
|
do_action( 'qm/info', $message, $context );
|
|
}
|
|
|
|
public static function debug( $message, array $context = array() ) {
|
|
/**
|
|
* Fires when a `debug` level message is logged.
|
|
*
|
|
* @since 3.1.0
|
|
*
|
|
* @param string $message The message.
|
|
* @param array $context The context passed.
|
|
*/
|
|
do_action( 'qm/debug', $message, $context );
|
|
}
|
|
|
|
public static function log( $level, $message, array $context = array() ) {
|
|
$logger = QM_Collectors::get( 'logger' );
|
|
$logger->log( $level, $message, $context );
|
|
}
|
|
}
|