error static method
Logs an error with optional stack trace
Implementation
static void error(String tag, dynamic error, [StackTrace? stackTrace]) {
for (var target in _logTargets) {
target.logError(tag, error, stackTrace);
}
}
Logs an error with optional stack trace
static void error(String tag, dynamic error, [StackTrace? stackTrace]) {
for (var target in _logTargets) {
target.logError(tag, error, stackTrace);
}
}