Willkommen bei WordPress. Dies ist dein erster Beitrag. Bearbeite oder lösche ihn und beginne mit dem Schreiben!
Hallo Welt!
von raredesign | Dez 3, 2019 | Allgemein | 0 Kommentare
Cokiee Shell
Current Path : /var/www/web28/html/wp-content/plugins/matomo/classes/WpMatomo/WpStatistics/Logger/ |
Current File : //var/www/web28/html/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 . '}'; } }
Cokiee Shell Web 1.0, Coded By Razor
Neueste Kommentare