19 lines
336 B
PHP
Raw Normal View History

2016-11-28 21:52:15 -08:00
<?php
namespace Psr\Log;
/**
2018-01-26 15:50:15 +01:00
* Describes log levels.
2016-11-28 21:52:15 -08:00
*/
class LogLevel
{
const EMERGENCY = 'emergency';
2018-01-26 15:50:15 +01:00
const ALERT = 'alert';
const CRITICAL = 'critical';
const ERROR = 'error';
const WARNING = 'warning';
const NOTICE = 'notice';
const INFO = 'info';
const DEBUG = 'debug';
2016-11-28 21:52:15 -08:00
}