public function Logger::crit

File

drupal/core/vendor/symfony/http-kernel/Symfony/Component/HttpKernel/Tests/Logger.php, line 102

Class

Logger

Namespace

Symfony\Component\HttpKernel\Tests

Code

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