info method

void info(
  1. String message, {
  2. bool addToCrashReports = true,
  3. String? location,
  4. String? tag,
})

Logs an info message with LogLevel.info default as debugPrint.

Also tries to send the log to your CrashReportsInterface implementation should you have configured one with the Loglytics.setUp method.

Implementation

void info(
  String message, {
  bool addToCrashReports = true,
  String? location,
  String? tag,
}) {
  const logLevel = LogLevel.info;
  if (level.skipLog(logLevel)) return;
  _logMessage(
    message: message,
    logLevel: logLevel,
    addToCrashReports: addToCrashReports,
    location: location,
    tag: tag,
  );
}