debug static method

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

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

Implementation

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