You are here

private property ConsoleLogger::$verbosityLevelMap in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 vendor/symfony/console/Logger/ConsoleLogger.php \Symfony\Component\Console\Logger\ConsoleLogger::verbosityLevelMap

Type: array

File

vendor/symfony/console/Logger/ConsoleLogger.php, line 39

Class

ConsoleLogger
PSR-3 compliant console logger.

Namespace

Symfony\Component\Console\Logger

Code

private $verbosityLevelMap = array(
  LogLevel::EMERGENCY => OutputInterface::VERBOSITY_NORMAL,
  LogLevel::ALERT => OutputInterface::VERBOSITY_NORMAL,
  LogLevel::CRITICAL => OutputInterface::VERBOSITY_NORMAL,
  LogLevel::ERROR => OutputInterface::VERBOSITY_NORMAL,
  LogLevel::WARNING => OutputInterface::VERBOSITY_NORMAL,
  LogLevel::NOTICE => OutputInterface::VERBOSITY_VERBOSE,
  LogLevel::INFO => OutputInterface::VERBOSITY_VERY_VERBOSE,
  LogLevel::DEBUG => OutputInterface::VERBOSITY_DEBUG,
);