recordFailure method

void recordFailure(
  1. String url,
  2. String errorMessage
)

Records a failed scrape for the given URL with the error message

Implementation

void recordFailure(String url, String errorMessage) {
  _reputationTracker.recordFailure(url, errorMessage);
}