production property

LoggingConfiguration get production

Production preset — warnings + errors only, local logging off (matches Swift).

Implementation

static LoggingConfiguration get production => LoggingConfiguration(
  enableLocalLogging: false,
  minLogLevel: LogLevel.LOG_LEVEL_WARNING,
  includeDeviceMetadata: true,
);