warn static method

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

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

  • tag The log tag.

  • message The log message.

Implementation

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