e static method

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

Implementation

static void e(String tag, String message) {
  if (sLogLevel <= LOG_ERROR) log('E/' + TAG + tag + ': ' + message);
}