public function LoggerTrait::error in Service Container 7
Same name and namespace in other branches
- 7.2 lib/Psr/Log/LoggerTrait.php \Psr\Log\LoggerTrait::error()
Runtime errors that do not require immediate action but should typically be logged and monitored.
Parameters
string $message:
array $context:
Return value
null
File
- lib/
Psr/ Log/ LoggerTrait.php, line 64
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 error($message, array $context = array()) {
$this
->log(LogLevel::ERROR, $message, $context);
}