AbstractLogger.php
6 years ago
InvalidArgumentException.php
6 years ago
LogLevel.php
6 years ago
LoggerAwareInterface.php
6 years ago
LoggerAwareTrait.php
6 years ago
LoggerInterface.php
6 years ago
LoggerTrait.php
6 years ago
NullLogger.php
6 years ago
index.php
7 years ago
LogLevel.php
22 lines
| 1 | <?php |
| 2 | |
| 3 | namespace MailPoetVendor\Psr\Log; |
| 4 | |
| 5 | if (!defined('ABSPATH')) exit; |
| 6 | |
| 7 | |
| 8 | /** |
| 9 | * Describes log levels. |
| 10 | */ |
| 11 | class LogLevel |
| 12 | { |
| 13 | const EMERGENCY = 'emergency'; |
| 14 | const ALERT = 'alert'; |
| 15 | const CRITICAL = 'critical'; |
| 16 | const ERROR = 'error'; |
| 17 | const WARNING = 'warning'; |
| 18 | const NOTICE = 'notice'; |
| 19 | const INFO = 'info'; |
| 20 | const DEBUG = 'debug'; |
| 21 | } |
| 22 |