Your IP : 216.73.216.95


Current Path : /var/www/html/wp-content/plugins/mailpoet/vendor-prefixed/psr/log/Psr/Log/
Upload File :
Current File : /var/www/html/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());
}