SDK Debugging
Set the Luciq SDK log level at initialization with LuciqConfiguration in your KMP app, and control whether Luciq prints to the Xcode console on iOS.
LuciqKmp.setLCQLogPrintsToConsole(true)Last updated
Set the Luciq SDK log level at initialization with LuciqConfiguration in your KMP app, and control whether Luciq prints to the Xcode console on iOS.
SDK debug log level is set at initialization via LuciqConfiguration.logLevel (e.g. LogLevel.Debug, LogLevel.Verbose, LogLevel.Error, LogLevel.None).
On iOS, you can also control whether Luciq logs are printed to the Xcode console:
LuciqKmp.setLCQLogPrintsToConsole(true)This is a no-op on Android.
For application-level logs that appear in reports and session replay, use LuciqKmp.logVerbose, LuciqKmp.logDebug, LuciqKmp.logInfo, LuciqKmp.logWarn, and LuciqKmp.logError. See Report Logs.
Last updated