You are here

public function Logger::notice 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::notice()

Normal but significant events.

Parameters

string $message:

array $context:

Return value

null

Overrides LoggerInterface::notice

File

vendor/symfony/http-kernel/Tests/Logger.php, line 74

Class

Logger

Namespace

Symfony\Component\HttpKernel\Tests

Code

public function notice($message, array $context = array()) {
  $this
    ->log('notice', $message, $context);
}