ascvh@#%(^-^)V ?host,ip,port,protocol,title,domain,country,city,link,org ???à JFIF x x ?? C ?? C ?à " ?? ?? μ } !1AQa "q2?‘?#B±áR?e$3br? %&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz??…???‰?’“”?–—???¢£¤¥|§¨?a23′μ?·?1o??????èéêòó???×?ùúáa?????èéê?òó???÷?ùú?? ?? μ w !1AQ aq"2?B‘?±á #3Rebr?{
File "cli-logger.php"
Full Path: /home/zcziejy/ryadselyen/plugins/elementor/modules/wp-cli/cli-logger.php
File size: 620 bytes
MIME-type: text/x-php
Charset: utf-8
<?php
namespace Elementor\Modules\WpCli;
use Elementor\Core\Logger\Loggers\Db;
use Elementor\Core\Logger\Items\Log_Item_Interface as Log_Item_Interface;
if ( ! defined( 'ABSPATH' ) ) {
exit; // Exit if accessed directly
}
class Cli_Logger extends Db {
public function save_log( Log_Item_Interface $item ) {
$message = $item->format( 'raw' );
switch ( $item->type ) {
case self::LEVEL_WARNING:
\WP_CLI::warning( $message );
break;
case self::LEVEL_ERROR:
\WP_CLI::error( $message, false );
break;
default:
\WP_CLI::log( $message );
break;
}
parent::save_log( $item );
}
}