ManaPHP\Logger::fatal PHP 메소드

fatal() 공개 메소드

Sends/Writes a critical message to the log
public fatal ( string $message, array $context = [] ) : static
$message string
$context array
리턴 static
    public function fatal($message, $context = [])
    {
        return $this->log(self::LEVEL_FATAL, $message, $context);
    }