info static method

void info(
  1. String message, {
  2. String tag = 'INFO',
})

Info log

Implementation

static void info(String message, {String tag = 'INFO'}) {
  if (_enabled && _minLogLevel <= _levelInfo && kDebugMode) {
    if (kDebugMode) {
      print('$_bold$_green[$tag]$_reset $message');
    }
  }
}