You are here

public function AbstractLogger::notice in Service Container 7.2

Same name and namespace in other branches
  1. 7 lib/Psr/Log/AbstractLogger.php \Psr\Log\AbstractLogger::notice()

Normal but significant events.

Parameters

string $message:

array $context:

Return value

null

Overrides LoggerInterface::notice

File

lib/Psr/Log/AbstractLogger.php, line 90

Class

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

Namespace

Psr\Log

Code

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