public function AbstractLogger::info

Interesting events.

Example: User logs in, SQL logs.

Parameters

string $message:

array $context:

Return value

null

Overrides LoggerInterface::info

File

drupal/core/vendor/psr/log/Psr/Log/AbstractLogger.php, line 104

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);
}