e static method

void e(
  1. String tag,
  2. String message
)

Implementation

static void e(String tag, String message) {
  if (logLevel.index <= LogLevel.ERROR.index) {
    log('E/[$tag]: $message');
  }
}