Back | Home
الـ Path الحالي: /home/picotech/domains/instantly.picotech.app/public_html/vendor/voku/../././psr/log/Psr/Log
الملفات الموجودة في هذا الـ Path:
.
..
AbstractLogger.php
InvalidArgumentException.php
LogLevel.php
LoggerAwareInterface.php
LoggerAwareTrait.php
LoggerInterface.php
LoggerTrait.php
NullLogger.php
Test

مشاهدة ملف: LogLevel.php

<?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';
}