e method

void e(
  1. String content
)

Implementation

void e(String content) {
  if (PlatformCompat.isOhos) {
    print('ohos:>> $tag $content');
    return;
  }
  Alog.e(tag: tag, type: type, moduleName: module, content: content);
}