Your IP : 216.73.216.236


Current Path : /home/kamilrogam/2018/administrator/components/com_akeeba/BackupEngine/Psr/Log/
Upload File :
Current File : /home/kamilrogam/2018/administrator/components/com_akeeba/BackupEngine/Psr/Log/LogLevel.php

<?php
/**
 * Akeeba Engine
 * The PHP-only site backup engine
 *
 * @copyright Copyright (c)2006-2019 Nicholas K. Dionysopoulos / Akeeba Ltd
 * @license   GNU GPL version 3 or, at your option, any later version
 * @package   akeebaengine
 */

namespace Psr\Log;

// Protection against direct access
defined('AKEEBAENGINE') or die();

/**
 * 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';
}