AboutSupportDeveloper GuideVersion 44.142.100.18
LogUploadOptions: {
    endpoint: string;
    logs?: LogTypes[];
    manifests?: string[];
    sizeLimit?: number;
    ui?: LogUploaderUIOptions;
}

Type declaration

  • endpoint: string

    The URL where log files are to be uploaded.

  • Optionallogs?: LogTypes[]

    An array of strings that specifies which logs should be uploaded. app: Uploads app logs rvm: Uploads rvm logs debug: Uploads debug logs debug:self: Uploads the most current debug log the current application debug:self:archive: Uploads all debug logs for the current application debug:self:archive:last: Uploads the last two debug logs for the current application

    For the debug log options, the one with the most specific matching pattern will be used.

    ['app', 'rvm', 'debug']
    
  • Optionalmanifests?: string[]

    An array of URL match patterns to define the manifests of the programs that the Log Uploader should upload logs for.

    []
    
  • OptionalsizeLimit?: number

    Max file size limit in Megabytes for the logs archive.

  • Optionalui?: LogUploaderUIOptions