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