info static method

void info(
  1. String message, [
  2. String? tag
])

Prints the information message with tag to the me.Log.

Implementation

static void info(String message, [String? tag]) {
  _print(me.LogLevel.info, '${tag != null ? '[$tag]' : ''} $message');
  _breadcrumb(message, tag, SentryLevel.info);
}