You are here

public static function UpgradeStatusForm::finishedParsing in Upgrade Status 8.3

Batch callback to finish parsing.

Parameters

$success: TRUE if the batch operation was successful; FALSE if there were errors.

$results: An associative array of results from the batch operation.

File

src/Form/UpgradeStatusForm.php, line 1267

Class

UpgradeStatusForm

Namespace

Drupal\upgrade_status\Form

Code

public static function finishedParsing($success, $results) {
  $logger = \Drupal::logger('upgrade_status');
  if ($success) {
    $logger
      ->notice('Finished Upgrade Status processing successfully.');
  }
  else {
    $logger
      ->notice('Finished Upgrade Status processing with errors.');
  }
}