public function Logger::crit in Zircon Profile 8
Same name and namespace in other branches
- 8.0 vendor/symfony/http-kernel/Tests/Logger.php \Symfony\Component\HttpKernel\Tests\Logger::crit()
File
- vendor/
symfony/ http-kernel/ Tests/ Logger.php, line 102
Class
Namespace
Symfony\Component\HttpKernel\TestsCode
public function crit($message, array $context = array()) {
@trigger_error('Use critical() which is PSR-3 compatible', E_USER_DEPRECATED);
$this
->log('critical', $message, $context);
}