info static method

void info(
  1. dynamic message, {
  2. String tag = 'Reactiv',
  3. Object? error,
  4. StackTrace? stackTrace,
})

Info logging (general information)

Implementation

static void info(
  dynamic message, {
  String tag = 'Reactiv',
  Object? error,
  StackTrace? stackTrace,
}) {
  _log(
    LogLevel.info,
    message,
    tag: tag,
    error: error,
    stackTrace: stackTrace,
  );
}