public function DrushLogMigrateMessage::display in Migrate Tools 8
Same name and namespace in other branches
- 8.5 src/DrushLogMigrateMessage.php \Drupal\migrate_tools\DrushLogMigrateMessage::display()
- 8.2 src/DrushLogMigrateMessage.php \Drupal\migrate_tools\DrushLogMigrateMessage::display()
- 8.3 src/DrushLogMigrateMessage.php \Drupal\migrate_tools\DrushLogMigrateMessage::display()
- 8.4 src/DrushLogMigrateMessage.php \Drupal\migrate_tools\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 24 - Contains \Drupal\migrate_tools\DrushLogMigrateMessage.
Class
Namespace
Drupal\migrate_toolsCode
public function display($message, $type = 'status') {
drush_log($message, $type);
}