trace static method

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

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

Implementation

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