info static method

void info(
  1. String message, [
  2. String? tag
])

Log an info message

Implementation

static void info(String message, [String? tag]) {
  if (_level >= LogLevel.info) {
    final prefix = tag != null ? '[$tag] ' : '';
    debugPrint('ℹ️ INFO: $prefix$message');
  }
}