formatLogEntry method

  1. @override
Map<String, dynamic> formatLogEntry(
  1. LogEntry entry
)
override

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);
}