You are here

class LogLevel in TMGMT Translator Smartling 8.2

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

Describes log levels.

Hierarchy

Expanded class hierarchy of LogLevel

2 files declare their use of LogLevel
BufferLogger.php in src/Logger/BufferLogger.php
LoggerInterfaceTest.php in vendor/psr/log/Psr/Log/Test/LoggerInterfaceTest.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