e static method

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

Implementation

static void e(Object? object, {String? tag}) {
  if(_eUseDartChannel){
    tag = tag ?? _tagValue;
    log('$tag e | ${object?.toString()}');
    return;
  }
  _printLog(tag, ' e ', object);
}