You are here

class LogLevel in Service Container 7.2

Same name and namespace in other branches
  1. 7 lib/Psr/Log/LogLevel.php \Psr\Log\LogLevel

Describes log levels

Hierarchy

Expanded class hierarchy of LogLevel

4 files declare their use of LogLevel
LoggerBase.php in src/Logger/LoggerBase.php
Contains \Drupal\service_container\Logger\LoggerBase.
LoggerChannelTest.php in tests/src/Logger/LoggerChannelTest.php
Contains \Drupal\Tests\service_container\Logger\LoggerChannelTest.
LoggerInterfaceTest.php in lib/Psr/Log/Test/LoggerInterfaceTest.php
WatchdogLogger.php in src/Logger/WatchdogLogger.php
Contains \Drupal\service_container\Logger\WatchdogLogger.

File

lib/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