public function LoggerTrait::notice in Lockr 7.3
Normal but significant events.
Parameters
string $message:
array $context:
Return value
void
File
- vendor/
psr/ log/ Psr/ Log/ LoggerTrait.php, line 97
Class
- LoggerTrait
- This is a simple Logger trait that classes unable to extend AbstractLogger (because they extend another class, etc) can include.
Namespace
Psr\LogCode
public function notice($message, array $context = array()) {
$this
->log(LogLevel::NOTICE, $message, $context);
}