attemptLogMessage method

  1. @override
String attemptLogMessage(
  1. Map<String, dynamic> responseFromSqlite
)

The log output before each attempt

Implementation

@override
String attemptLogMessage(Map<String, dynamic> responseFromSqlite) {
  final attemptMessage = [
    responseFromSqlite[HTTP_JOBS_REQUEST_METHOD_COLUMN],
    responseFromSqlite[HTTP_JOBS_URL_COLUMN],
  ].join(' ');

  return 'in $attemptMessage : $responseFromSqlite';
}