formatLogEntry method
Formats a single LogEntry into a map suitable for the target API.
Subclasses must implement this to format entries according to the specific API requirements of the target service.
Implementation
@override
Map<String, dynamic> formatLogEntry(LogEntry entry) {
return _createLogEntry(entry);
}