You are here

public function Logger::crit in Zircon Profile 8

Same name and namespace in other branches
  1. 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

Logger

Namespace

Symfony\Component\HttpKernel\Tests

Code

public function crit($message, array $context = array()) {
  @trigger_error('Use critical() which is PSR-3 compatible', E_USER_DEPRECATED);
  $this
    ->log('critical', $message, $context);
}