logUploadUrl

This property allows the super app to customize the gateway address used for logging purposes.

Note: Must configure this property before initializing the SDK.

Property

copy
/**
 setting custom logUploadUrl to redirect logging traffic to custom logging gateway
 */
@property (nonatomic, copy, nullable) NSString *logUploadUrl;

Name

Type

Description

Required

logUploadUrl

NSString

Indicates the gateway address used for logging.

Note: If this parameter is empty or null, SDK uses the default gateway address for logging.

Yes

Sample

copy
func createGriverConfiguration() -> GRVConfiguration {
    let configuration = GRVConfiguration()
    configuration.logUploadUrl = "Custom LogUploadUrl"
    return configuration
}