w static method

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

Implementation

static void w(String tag, String message) {
  if (sLogLevel <= LOG_WARN) log('W/' + TAG + tag + ': ' + message);
}