d static method

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

Implementation

static void d(String tag, String message) {
  if (sLogLevel <= LOG_DEBUG) log('D/' + TAG + tag + ': ' + message);
}