You are here

public function LoggerTrait::notice in Zircon Profile 8.0

Same name and namespace in other branches
  1. 8 vendor/psr/log/Psr/Log/LoggerTrait.php \Psr\Log\LoggerTrait::notice()

Normal but significant events.

Parameters

string $message:

array $context:

Return value

null

File

vendor/psr/log/Psr/Log/LoggerTrait.php, line 91

Class

LoggerTrait
This is a simple Logger trait that classes unable to extend AbstractLogger (because they extend another class, etc) can include.

Namespace

Psr\Log

Code

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