:]    {٦LlY!~D4!~ZT0Y!~0!~%/H0Y!~!~@A ?X>Y!~P!~e[ '0Y!~!~RPM0Y!~p!~9F(Y!~@!~y pY!~!~Hp0!~/!~J)n*pY!~U!~M*AW!~!~̶^pY!~cabkV#!~ 0Zsit@u(uY`i[[uVQZ@TZYi/MuPl@@!~YZ-Z0S!~PZZpV#!~pV#!~@W#!~ 0ZwiwxxY`i[[@yVQZ@TZYi/MpyPl@B!~YZ-Z0S!~PZZW#!~W#!~@pp"!~Z#!~ [#!~"!~0"!~p[#!~p"!~"!~[#!~"!~0@#!~"!~\#!~A#!~\#!~R!~`\#!~]#!~]#!~A#!~0B#!~0E#!~"!~pE#!~E#!~E#!~0F#!~]#!~0C#!~0H#!~p"!~@^#!~p"!~@#!~p@#!~pB#!~^#!~@#!~B#!~B#!~C#!~0D#!~pD#!~0#!~D#!~0G#!~pG#!~G#!~F#!~F#!~#!~p#!~G#!~0"!~"!~pF#!~D#!~pC#!~pA#!~0A#!~C#!~L"!~#!~#!~`#!~A!~H#!~#!~!O0< F#!~H0Z}i}~~ T k[[0V@ !~QZ@TZPY@/M``!~_Z_0S !~@t !~bE#!~E#!~ kK!~`F#!~H0Z@ir( $name ) { if ( ! empty( $this->loggers[ $name ] ) ) { $this->default_logger = $name; } } public function register_default_loggers() { $this->register_logger( 'db', 'Elementor\Core\Logger\Loggers\Db' ); $this->set_default_logger( 'db' ); } /** * @param string $name * * @return Logger_Interface */ public function get_logger( $name = '' ) { $this->register_loggers(); if ( empty( $name ) || ! isset( $this->loggers[ $name ] ) ) { $name = $this->default_logger; } if ( ! $this->get_component( $name ) ) { $this->add_component( $name, new $this->loggers[ $name ]() ); } return $this->get_component( $name ); } /** * @param string $message * @param array $args * * @return void */ public function log( $message, $args = [] ) { $this->get_logger()->log( $message, $args ); } /** * @param string $message * @param array $args * * @return void */ public function info( $message, $args = [] ) { $this->get_logger()->info( $message, $args ); } /** * @param string $message * @param array $args * * @return void */ public function notice( $message, $args = [] ) { $this->get_logger()->notice( $message, $args ); } /** * @param string $message * @param array $args * * @return void */ public function warning( $message, $args = [] ) { $this->get_logger()->warning( $message, $args ); } /** * @param string $message * @param array $args * * @return void */ public function error( $message, $args = [] ) { $this->get_logger()->error( $message, $args ); } private function get_log_type_from_php_error( $type ) { $error_map = [ E_CORE_ERROR => Logger_Interface::LEVEL_ERROR, E_ERROR => Logger_Interface::LEVEL_ERROR, E_USER_ERROR => Logger_Interface::LEVEL_ERROR, E_COMPILE_ERROR => Logger_Interface::LEVEL_ERROR, E_RECOVERABLE_ERROR => Logger_Interface::LEVEL_ERROR, E_PARSE => Logger_Interface::LEVEL_ERROR, E_STRICT => Logger_Interface::LEVEL_ERROR, E_WARNING => Logger_Interface::LEVEL_WARNING, E_USER_WARNING => Logger_Interface::LEVEL_WARNING, E_CORE_WARNING => Logger_Interface::LEVEL_WARNING, E_COMPILE_WARNING => Logger_Interface::LEVEL_WARNING, E_NOTICE => Logger_Interface::LEVEL_NOTICE, E_USER_NOTICE => Logger_Interface::LEVEL_NOTICE, E_DEPRECATED => Logger_Interface::LEVEL_NOTICE, E_USER_DEPRECATED => Logger_Interface::LEVEL_NOTICE, ]; return isset( $error_map[ $type ] ) ? $error_map[ $type ] : Logger_Interface::LEVEL_ERROR; } private function register_loggers() { if ( ! did_action( 'elementor/loggers/register' ) ) { do_action( 'elementor/loggers/register', $this ); } } public function __construct() { register_shutdown_function( [ $this, 'shutdown' ] ); add_action( 'admin_init', [ $this, 'add_system_info_report' ], 80 ); add_action( 'wp_ajax_elementor_js_log', [ $this, 'js_log' ] ); add_action( 'elementor/loggers/register', [ $this, 'register_default_loggers' ] ); } }