i static method

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

Implementation

static void i(String tag, String message) {
  if (sLogLevel <= LOG_INFO) log('I/' + TAG + tag + ': ' + message);
}