/home/vianto5/ceibaresidencial.mx/wp-content/plugins/query-monitor/classes
NameSizeModeActions
Activation.php30380644editdlrm
ArrayAccess.php11050644editdlrm
Backtrace.php228870644editdlrm
Backtrace_Frame.php8700644editdlrm
CLI.php15680644editdlrm
Collector.php87070644editdlrm
Collectors.php34450644editdlrm
Collector_Assets.php145000644editdlrm
Component.php38660644editdlrm
Component_Altis_Vendor.php3560644editdlrm
Component_Core.php2630644editdlrm
Component_Dropin.php3460644editdlrm
Component_MU_Plugin.php3330644editdlrm
Component_MU_Vendor.php3420644editdlrm
Component_Other.php1700644editdlrm
Component_PHP.php2210644editdlrm
Component_Plugin.php3240644editdlrm
Component_Stylesheet.php3410644editdlrm
Component_Template.php2780644editdlrm
Component_Unknown.php8660644editdlrm
Component_VIP_Plugin.php3460644editdlrm
Data.php4280644editdlrm
DataCollector.php3960644editdlrm
DB.php15460644editdlrm
debug_bar.php17130644editdlrm
debug_bar_panel.php14460644editdlrm
Deprecated_Argument_Run.php10350644editdlrm
Deprecated_Class_Run.php9660644editdlrm
Deprecated_Constructor_Run.php11440644editdlrm
Deprecated_File_Included.php10950644editdlrm
Deprecated_Function_Run.php9830644editdlrm
Deprecated_Hook_Run.php10980644editdlrm
Dispatcher.php50970644editdlrm
Dispatchers.php12410644editdlrm
Doing_It_Wrong_Run.php8920644editdlrm
Frame_Registry.php14560644editdlrm
Hook.php13790644editdlrm
Output.php9230644editdlrm
PHP.php13970644editdlrm
Plugin.php24000644editdlrm
QM.php44510644editdlrm
QueryMonitor.php87050644editdlrm
Timer.php33260644editdlrm
Util.php199010644editdlrm
Wrong.php8220644editdlrm
Edit: /home/vianto5/ceibaresidencial.mx/wp-content/plugins/query-monitor/classes/QM.php (4451B)
$context * @return void */ public static function emergency( $message, array $context = array() ) { /** * Fires when an `emergency` level message is logged. * * @since 3.1.0 * * @param mixed $message The message or data to log. * @param array $context The context passed. */ do_action( 'qm/emergency', $message, $context ); } /** * @param string $message * @param array $context * @return void */ public static function alert( $message, array $context = array() ) { /** * Fires when an `alert` level message is logged. * * @since 3.1.0 * * @param mixed $message The message or data to log. * @param array $context The context passed. */ do_action( 'qm/alert', $message, $context ); } /** * @param string $message * @param array $context * @return void */ public static function critical( $message, array $context = array() ) { /** * Fires when a `critical` level message is logged. * * @since 3.1.0 * * @param mixed $message The message or data to log. * @param array $context The context passed. */ do_action( 'qm/critical', $message, $context ); } /** * @param string $message * @param array $context * @return void */ public static function error( $message, array $context = array() ) { /** * Fires when an `error` level message is logged. * * @since 3.1.0 * * @param mixed $message The message or data to log. * @param array $context The context passed. */ do_action( 'qm/error', $message, $context ); } /** * @param string $message * @param array $context * @return void */ public static function warning( $message, array $context = array() ) { /** * Fires when a `warning` level message is logged. * * @since 3.1.0 * * @param mixed $message The message or data to log. * @param array $context The context passed. */ do_action( 'qm/warning', $message, $context ); } /** * @param string $message * @param array $context * @return void */ public static function notice( $message, array $context = array() ) { /** * Fires when a `notice` level message is logged. * * @since 3.1.0 * * @param mixed $message The message or data to log. * @param array $context The context passed. */ do_action( 'qm/notice', $message, $context ); } /** * @param string $message * @param array $context * @return void */ public static function info( $message, array $context = array() ) { /** * Fires when an `info` level message is logged. * * @since 3.1.0 * * @param mixed $message The message or data to log. * @param array $context The context passed. */ do_action( 'qm/info', $message, $context ); } /** * @param string $message * @param array $context * @return void */ public static function debug( $message, array $context = array() ) { /** * Fires when a `debug` level message is logged. * * @since 3.1.0 * * @param mixed $message The message or data to log. * @param array $context The context passed. */ do_action( 'qm/debug', $message, $context ); } /** * @param mixed $assertion * @param string $message * @param ?mixed $value * @return void */ public static function assert( $assertion, string $message = '', $value = null ) { /** * Fires when an assertion is performed. * * @since x.y.z * * @param mixed $assertion The assertion result, ideally something that evaluates to true. * @param string $message The assertion message. May be an empty string. * @param mixed $value Optional. A value to show along with the message when the assertion fails. */ do_action( 'qm/assert', $assertion, $message, $value ); } /** * @param string $level * @param string $message * @param array $context * @phpstan-param QM_Collector_Logger::* $level * @return void */ public static function log( $level, $message, array $context = array() ) { /** @var QM_Collector_Logger $logger */ $logger = QM_Collectors::get( 'logger' ); $logger->log( $level, $message, $context ); } }