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
LogLevel.php
15 lines
| 1 | <?php |
| 2 | namespace MailPoetVendor\Psr\Log; |
| 3 | if (!defined('ABSPATH')) exit; |
| 4 | class LogLevel |
| 5 | { |
| 6 | const EMERGENCY = 'emergency'; |
| 7 | const ALERT = 'alert'; |
| 8 | const CRITICAL = 'critical'; |
| 9 | const ERROR = 'error'; |
| 10 | const WARNING = 'warning'; |
| 11 | const NOTICE = 'notice'; |
| 12 | const INFO = 'info'; |
| 13 | const DEBUG = 'debug'; |
| 14 | } |
| 15 |