|
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 : |
<?php
namespace WpMatomo\WpStatistics\Logger;
use Psr\Log\LoggerInterface;
/**
* WP_CLi logger
*
* @package WpMatomo
* @subpackage WpStatisticsImport
* phpcs:disable WordPress.Security.EscapeOutput.OutputNotEscaped
*/
class EchoLogger implements LoggerInterface {
public function debug( $message, array $context = array() ) {
echo(
'Matomo:[import][debug] ' . str_replace(
array_map(
[
$this,
'getContext',
],
array_keys( $context )
),
array_values( $context ),
$message
)
) . PHP_EOL;
}
public function error( $message, array $context = array() ) {
echo(
'Matomo:[import][error] ' . str_replace(
array_map(
[
$this,
'getContext',
],
array_keys( $context )
),
array_values( $context ),
$message
)
) . PHP_EOL;
}
public function critical( $message, array $context = array() ) {
echo(
'Matomo:[import][critical] ' . str_replace(
array_map(
[
$this,
'getContext',
],
array_keys( $context )
),
array_values( $context ),
$message
)
) . PHP_EOL;
}
public function warning( $message, array $context = array() ) {
echo(
'Matomo:[import][warning] ' . str_replace(
array_map(
[
$this,
'getContext',
],
array_keys( $context )
),
array_values( $context ),
$message
)
) . PHP_EOL;
}
public function info( $message, array $context = array() ) {
echo(
'Matomo:[import][info] ' . str_replace(
array_map(
[
$this,
'getContext',
],
array_keys( $context )
),
array_values( $context ),
$message
)
) . PHP_EOL;
}
public function log( $level, $message, array $context = array() ) {
echo(
'Matomo:[import][' . $level . '] ' . str_replace(
array_map(
[
$this,
'getContext',
],
array_keys( $context )
),
array_values( $context ),
$message
)
) . PHP_EOL;
}
public function notice( $message, array $context = array() ) {
echo(
'Matomo:[import][notice] ' . str_replace(
array_map(
[
$this,
'getContext',
],
array_keys( $context )
),
array_values( $context ),
$message
)
) . PHP_EOL;
}
public function alert( $message, array $context = array() ) {
echo(
'Matomo:[import][alert] ' . str_replace(
array_map(
[
$this,
'getContext',
],
array_keys( $context )
),
array_values( $context ),
$message
)
) . PHP_EOL;
}
public function emergency( $message, array $context = array() ) {
echo(
'Matomo:[import][emergency] ' . str_replace(
array_map(
[
$this,
'getContext',
],
array_keys( $context )
),
array_values( $context ),
$message
)
) . PHP_EOL;
}
public function getContext( $context ) {
return '{' . $context . '}';
}
}