debug method
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,
);
Logs a debug-level message
void debug(
String message, {
Map<String, dynamic>? structuredData,
List<String>? tags,
}) => this(
message,
level: LogLevel.debug,
structuredData: structuredData,
tags: tags,
);