https://t.me/RX1948
Server : Apache
System : Linux s1230 5.15.0-139-generic #149~20.04.1 SMP Tue Jul 14 11:21:49 UTC 2026 x86_64
User : p141464 ( 418825)
PHP Version : 7.4.33.12
Disable Function : NONE
Directory :  /html/KMU-CSR-PLANER/wp-content/plugins/matomo/classes/WpMatomo/WpStatistics/Logger/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Current File : /html/KMU-CSR-PLANER/wp-content/plugins/matomo/classes/WpMatomo/WpStatistics/Logger/WpCliLogger.php
<?php

namespace WpMatomo\WpStatistics\Logger;

use WP_CLI;
use Psr\Log\LoggerInterface;

/**
 * WP_CLi logger
 *
 * @package WpMatomo
 * @subpackage WpStatisticsImport
 */
class WpCliLogger implements LoggerInterface {

	public function debug( $message, array $context = array() ) {
		WP_CLI::log(
			'[debug] ' . str_replace(
				array_map(
					[
						$this,
						'getContext',
					],
					array_keys( $context )
				),
				array_values( $context ),
				$message
			)
		);
	}

	public function error( $message, array $context = array() ) {
		WP_CLI::log(
			'[error] ' . str_replace(
				array_map(
					[
						$this,
						'getContext',
					],
					array_keys( $context )
				),
				array_values( $context ),
				$message
			)
		);
	}

	public function critical( $message, array $context = array() ) {
		WP_CLI::log(
			'[critical] ' . str_replace(
				array_map(
					[
						$this,
						'getContext',
					],
					array_keys( $context )
				),
				array_values( $context ),
				$message
			)
		);
	}

	public function warning( $message, array $context = array() ) {
		WP_CLI::log(
			'[warning] ' . str_replace(
				array_map(
					[
						$this,
						'getContext',
					],
					array_keys( $context )
				),
				array_values( $context ),
				$message
			)
		);
	}

	public function info( $message, array $context = array() ) {
		WP_CLI::log(
			'[info] ' . str_replace(
				array_map(
					[
						$this,
						'getContext',
					],
					array_keys( $context )
				),
				array_values( $context ),
				$message
			)
		);
	}

	public function log( $level, $message, array $context = array() ) {
		WP_CLI::log(
			'[' . $level . '] ' . str_replace(
				array_map(
					[
						$this,
						'getContext',
					],
					array_keys( $context )
				),
				array_values( $context ),
				$message
			)
		);
	}

	public function notice( $message, array $context = array() ) {
		WP_CLI::log(
			'[notice] ' . str_replace(
				array_map(
					[
						$this,
						'getContext',
					],
					array_keys( $context )
				),
				array_values( $context ),
				$message
			)
		);
	}

	public function alert( $message, array $context = array() ) {
		WP_CLI::log(
			'[alert] ' . str_replace(
				array_map(
					[
						$this,
						'getContext',
					],
					array_keys( $context )
				),
				array_values( $context ),
				$message
			)
		);
	}

	public function emergency( $message, array $context = array() ) {
		WP_CLI::log(
			'[emergency] ' . str_replace(
				array_map(
					[
						$this,
						'getContext',
					],
					array_keys( $context )
				),
				array_values( $context ),
				$message
			)
		);
	}

	public function getContext( $context ) {
		return '{' . $context . '}';
	}
}

https://t.me/RX1948 - 2025