STRATO-apps/wordpress_03/app/wp-content/plugins/tutor-pro/vendor/psr/log/Psr/Log/LogLevel.php
SHA-256: 9f2520b22945ce1599c4fedba0a4c75985f172ca86cdf386766ebb8b2363768c
<?php
namespace Psr\Log;
/**
* Describes log levels.
*/
class LogLevel
{
const EMERGENCY = 'emergency';
const ALERT = 'alert';
const CRITICAL = 'critical';
const ERROR = 'error';
const WARNING = 'warning';
const NOTICE = 'notice';
const INFO = 'info';
const DEBUG = 'debug';
}