function drush_migrate_set_verbose in Migrate 6
Set the verbose context if 'feedback' is requested.
2 calls to drush_migrate_set_verbose()
- drush_migrate_clear in ./
migrate.drush.inc - Clear one specified content set
- drush_migrate_import in ./
migrate.drush.inc - Import one specified content set
File
- ./
migrate.drush.inc, line 444 - Drush support for the migrate module
Code
function drush_migrate_set_verbose() {
if (drush_get_option('feedback')) {
drush_set_context('DRUSH_VERBOSE', TRUE);
}
}