You are here

class LogLevel in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 vendor/psr/log/Psr/Log/LogLevel.php \Psr\Log\LogLevel

Describes log levels

Hierarchy

Expanded class hierarchy of LogLevel

11 files declare their use of LogLevel
ConsoleLogger.php in vendor/symfony/console/Logger/ConsoleLogger.php
ConsoleLoggerTest.php in vendor/symfony/console/Tests/Logger/ConsoleLoggerTest.php
DebugHandlersListenerTest.php in vendor/symfony/http-kernel/Tests/EventListener/DebugHandlersListenerTest.php
DrupalMemcache.php in modules/memcache/src/DrupalMemcache.php
Contains \Drupal\memcache\DrupalMemcache.
DrupalMemcacheBase.php in modules/memcache/src/DrupalMemcacheBase.php
Contains \Drupal\memcache\DrupalMemcacheBase.

... See full list

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