You are here

class LogLevel in Lockr 7.3

Describes log levels.

Hierarchy

Expanded class hierarchy of LogLevel

2 files declare their use of LogLevel
LoggerInterfaceTest.php in vendor/psr/log/Psr/Log/Test/LoggerInterfaceTest.php
Middleware.php in vendor/guzzlehttp/guzzle/src/Middleware.php

File

vendor/psr/log/Psr/Log/LogLevel.php, line 8

Namespace

Psr\Log
View source
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';

}

Members