STRATO-apps/wordpress_03/app/wp-content/plugins/wp-rocket/inc/Dependencies/Psr/Log/LogLevel.php
SHA-256: a6f06a7883e6c33794046a4e619c9d4d6e3ed753d747e7e39efeebc6ad857e9d
<?php
namespace WP_Rocket\Dependencies\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';
}