File "AbstractLogger.php"

Full Path: /home/warrior1/public_html/plugins/mailpoet/vendor-prefixed/psr/log/Psr/Log/AbstractLogger.php
File size: 1.04 KB
MIME-type: text/x-php
Charset: utf-8

<?php
namespace MailPoetVendor\Psr\Log;
if (!defined('ABSPATH')) exit;
abstract class AbstractLogger implements LoggerInterface
{
 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);
 }
}