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]) {
  me.Log.trace(message, tag);
  _breadcrumb(message, tag, SentryLevel.debug);
}