protected function ContentSynchronizerCommands::logImportData in Content Synchronizer 3.x
Log import data.
Parameters
array $importData: The import data.
1 call to ContentSynchronizerCommands::logImportData()
- ContentSynchronizerCommands::launchImport in src/
Commands/ ContentSynchronizerCommands.php - Launch the import of the import entity ID.
File
- src/
Commands/ ContentSynchronizerCommands.php, line 234
Class
- ContentSynchronizerCommands
- A Drush commandfile.
Namespace
Drupal\content_synchronizer\CommandsCode
protected function logImportData(array $importData) {
foreach ($importData['entities'] as $datum) {
$this->logger
->notice($this
->t('[@key/@count] - "@label" - @status (@url)', $datum));
}
}