PluginProbe
UpStream: a Project Management Plugin for WordPress / trunk
UpStream: a Project Management Plugin for WordPress vtrunk
trunk 1.39.0 1.39.1 1.39.2 1.39.3 2.0.7 2.1.0
upstream / vendor / psr / log / Psr / Log / LogLevel.php

LogLevel.php in UpStream: a Project Management Plugin for WordPress trunk, at vendor/psr/log/Psr/Log/LogLevel.php

19 lines 336 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2
3 namespace Psr\Log;
4
5 /**
6 * Describes log levels.
7 */
8 class LogLevel
9 {
10 const EMERGENCY = 'emergency';
11 const ALERT = 'alert';
12 const CRITICAL = 'critical';
13 const ERROR = 'error';
14 const WARNING = 'warning';
15 const NOTICE = 'notice';
16 const INFO = 'info';
17 const DEBUG = 'debug';
18 }
19