info static method

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

convenient function to print a message with log level INFO and tag.

  • tag The log tag.

  • message The log message.

Implementation

static void info(String tag, String message) => $prototype.info(tag, message);