public function LoggerTrait::critical in TMGMT Translator Smartling 8.2
Same name and namespace in other branches
- 8.4 vendor/psr/log/Psr/Log/LoggerTrait.php \Psr\Log\LoggerTrait::critical()
- 8.3 vendor/psr/log/Psr/Log/LoggerTrait.php \Psr\Log\LoggerTrait::critical()
Critical conditions.
Example: Application component unavailable, unexpected exception.
Parameters
string $message:
array $context:
Return value
void
File
- vendor/
psr/ log/ Psr/ Log/ LoggerTrait.php, line 54
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 critical($message, array $context = array()) {
$this
->log(LogLevel::CRITICAL, $message, $context);
}