public function AbstractLogger::notice in Lockr 7.3
Normal but significant events.
Parameters
string $message:
array $context:
Return value
void
Overrides LoggerInterface::notice
File
- vendor/
psr/ log/ Psr/ Log/ AbstractLogger.php, line 96
Class
- AbstractLogger
- This is a simple Logger implementation that other Loggers can inherit from.
Namespace
Psr\LogCode
public function notice($message, array $context = array()) {
$this
->log(LogLevel::NOTICE, $message, $context);
}