AbstractLogger.php
4 years ago
InvalidArgumentException.php
4 years ago
LogLevel.php
4 years ago
LoggerAwareInterface.php
4 years ago
LoggerAwareTrait.php
4 years ago
LoggerInterface.php
4 years ago
LoggerTrait.php
4 years ago
NullLogger.php
4 years ago
index.php
3 years ago
LoggerInterface.php
16 lines
| 1 | <?php |
| 2 | namespace MailPoetVendor\Psr\Log; |
| 3 | if (!defined('ABSPATH')) exit; |
| 4 | interface LoggerInterface |
| 5 | { |
| 6 | public function emergency($message, array $context = array()); |
| 7 | public function alert($message, array $context = array()); |
| 8 | public function critical($message, array $context = array()); |
| 9 | public function error($message, array $context = array()); |
| 10 | public function warning($message, array $context = array()); |
| 11 | public function notice($message, array $context = array()); |
| 12 | public function info($message, array $context = array()); |
| 13 | public function debug($message, array $context = array()); |
| 14 | public function log($level, $message, array $context = array()); |
| 15 | } |
| 16 |