Google\Cloud\Logging\PsrLogger::notice PHP Method

notice() public method

Example: $psrLogger->notice('notice message');
public notice ( string $message, array $context = [] )
$message string The message to log.
$context array [optional] Please see {@see \Google\Cloud\Logging\PsrLogger::log()} for the available options.
    public function notice($message, array $context = [])
    {
        $this->log(Logger::NOTICE, $message, $context);
    }