v static method

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

Implementation

static void v(String tag, String message) {
  if (sLogLevel <= LOG_VERBOSE) log('V/' + TAG + tag + ': ' + message);
}