You are here

public function AbstractLogger::info in TMGMT Translator Smartling 8.2

Same name and namespace in other branches
  1. 8.4 vendor/psr/log/Psr/Log/AbstractLogger.php \Psr\Log\AbstractLogger::info()
  2. 8.3 vendor/psr/log/Psr/Log/AbstractLogger.php \Psr\Log\AbstractLogger::info()

Interesting events.

Example: User logs in, SQL logs.

Parameters

string $message:

array $context:

Return value

void

Overrides LoggerInterface::info

File

vendor/psr/log/Psr/Log/AbstractLogger.php, line 111

Class

AbstractLogger
This is a simple Logger implementation that other Loggers can inherit from.

Namespace

Psr\Log

Code

public function info($message, array $context = array()) {
  $this
    ->log(LogLevel::INFO, $message, $context);
}