info method
Logs an info-level message
Implementation
void info(
String message, {
Map<String, dynamic>? structuredData,
List<String>? tags,
}) => this(
message,
level: LogLevel.info,
structuredData: structuredData,
tags: tags,
);
Logs an info-level message
void info(
String message, {
Map<String, dynamic>? structuredData,
List<String>? tags,
}) => this(
message,
level: LogLevel.info,
structuredData: structuredData,
tags: tags,
);