e static method
Implementation
static void e(List<LogCategory> categories, String message, [dynamic error, StackTrace? stackTrace]) {
if (_shouldLogAny(categories, LogLevel.error)) {
final categoryNames = categories.map((c) => c.name).join('|');
debugPrint('❤️ [E][$categoryNames] $message');
if (error != null) debugPrint(' Error: $error');
if (stackTrace != null) debugPrint(' Stack: $stackTrace');
}
}