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

alert() public method

Example: $psrLogger->alert('alert message');
public alert ( 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 alert($message, array $context = [])
    {
        $this->log(Logger::ALERT, $message, $context);
    }