Logging
Flutter Inform SDK Wrapper
Validic Logs
Validic Logs can be viewed in your IDE debug console (e.g. Android Studio for Android, Xcode for iOS). All logs from the Validic SDK will start with ValidicLog#.
Remote Logging
Remote logging sends SDK logs to the Validic API for remote diagnostics. All Validic SDK logs are automatically and securely uploaded to Validic to aid in support requests. Only the SDK's own internal logs are collected — no client application logs are captured or uploaded. No action is required to enable this. This setting is persisted across app launches and user sessions. Remote logging can be disabled if needed:
await ValidicCore.enableRemoteLogging();
await ValidicCore.disableRemoteLogging();Local Logging
Local logging outputs SDK logs to the device console.
await ValidicCore.enableLocalLogging();
await ValidicCore.disableLocalLogging();Updated 24 days ago
