e static method

void e(
  1. Object object, {
  2. String? tag,
  3. bool? withSQLite,
  4. bool? withUp,
})

Error 出现错误,是最需要关注解决的。

Implementation

static void e(Object object, {String? tag, bool? withSQLite, bool? withUp}) {
  if (MiniLoggerLevelEnum.E >= _config.minPrintLevel) {
    _handleLog(MiniLoggerLevelEnum.E, object,
        tag: tag, withSQLite: withSQLite, withUp: withUp);
  }
}