v static method

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

Implementation

static void v(String tag, String msg) {
  if (_kDebugEnable) {
    printLog(tag, LogLevel.verbose, msg);
  }
}