Scalr\Logger::fatal PHP Method

fatal() public method

Log a message with the FATAL level.
public fatal ( string $message, string $args = null )
$message string The message that accepts format
$args string optional An arguments
    public function fatal($message, $args = null)
    {
        $args = func_get_args();
        array_unshift($args, self::LEVEL_FATAL);
        call_user_func_array([$this, 'log'], $args);
    }