d static method

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

Implementation

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