DT Exchange Logging on iOS
Property Name
Description
Setting the Log Level
IASDKCore.sharedInstance()?.initWithAppID(
appId,
completionBlock: { success, error in
if let error {
print("DTExchange init failed: \(error.localizedDescription)")
} else {
print("DTExchange init success")
}
},
completionQueue: .main
)
// Set the desired log level
// Use .debug for full logs during development or .off for production
DTXLogger.setLogLevel(.debug)Last updated

