debug method

void debug(
  1. String message, {
  2. Map<String, dynamic>? structuredData,
  3. List<String>? tags,
})

Logs a debug-level message

Implementation

void debug(
  String message, {
  Map<String, dynamic>? structuredData,
  List<String>? tags,
}) => this(
  message,
  level: LogLevel.debug,
  structuredData: structuredData,
  tags: tags,
);