19 lines
336 B
PHP
Raw Permalink Normal View History

<?php
namespace Psr\Log;
/**
2021-05-01 07:49:37 -04:00
* Describes log levels.
*/
class LogLevel
{
const EMERGENCY = 'emergency';
2021-05-01 07:49:37 -04:00
const ALERT = 'alert';
const CRITICAL = 'critical';
const ERROR = 'error';
const WARNING = 'warning';
const NOTICE = 'notice';
const INFO = 'info';
const DEBUG = 'debug';
}