public function DrushLogMigrateMessage::display in Migrate Upgrade 8.2
Same name and namespace in other branches
- 8.3 src/DrushLogMigrateMessage.php \Drupal\migrate_upgrade\DrushLogMigrateMessage::display()
- 8 src/DrushLogMigrateMessage.php \Drupal\migrate_upgrade\DrushLogMigrateMessage::display()
Output a message from the migration.
Parameters
string $message: The message to display.
string $type: The type of message to display.
Overrides MigrateMessageInterface::display
See also
drush_log()
File
- src/
DrushLogMigrateMessage.php, line 19
Class
Namespace
Drupal\migrate_upgradeCode
public function display($message, $type = 'status') {
drush_log($message, $type);
}