e static method

void e(
  1. Object? object, [
  2. String? tag
])

输出调试信息

Implementation

static void e(Object? object, [String? tag]) {
  if (_logger == null) {
    _init();
  }
  _logger?.e(object, tag);
}