You are here

class LogLevel in TMGMT Translator Smartling 8.3

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

Describes log levels.

Hierarchy

Expanded class hierarchy of LogLevel

3 files declare their use of LogLevel
BufferLogger.php in src/Logger/BufferLogger.php
LoggerInterfaceTest.php in vendor/psr/log/Psr/Log/Test/LoggerInterfaceTest.php
tmgmt_smartling_log_settings.module in modules/tmgmt_smartling_log_settings/tmgmt_smartling_log_settings.module

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