You are here

public function DrushLogMigrateMessage::display in Migrate Tools 8.3

Same name and namespace in other branches
  1. 8.5 src/DrushLogMigrateMessage.php \Drupal\migrate_tools\DrushLogMigrateMessage::display()
  2. 8 src/DrushLogMigrateMessage.php \Drupal\migrate_tools\DrushLogMigrateMessage::display()
  3. 8.2 src/DrushLogMigrateMessage.php \Drupal\migrate_tools\DrushLogMigrateMessage::display()
  4. 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 19

Class

DrushLogMigrateMessage

Namespace

Drupal\migrate_tools

Code

public function display($message, $type = 'status') {
  drush_log($message, $type);
}