e method

void e(
  1. Object? object, {
  2. String? tag,
})

Implementation

void e(Object? object, {String? tag}) {
  if (level.index > LogLevel.error.index) {
    return;
  }
  String t = tag == null ? 'E' : '$tag';
  _print(object, t, '31', LogLevel.error);
}