logError function

void logError(
  1. Object error
)

Log an error to the error reporting system.

Implementation

void logError(Object error) {
  // In the full implementation, this logs to the error reporting service.
  // ignore: avoid_print
  print('[ConversationRecovery] Error: $error');
}