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