MigrateMessage.php

Same filename and directory in other branches
  1. 9 core/modules/migrate/src/MigrateMessage.php
  2. 10 core/modules/migrate/src/MigrateMessage.php
  3. 11.x core/modules/migrate/src/MigrateMessage.php

Namespace

Drupal\migrate

File

core/modules/migrate/src/MigrateMessage.php

View source
<?php

namespace Drupal\migrate;

use Drupal\Core\Logger\RfcLogLevel;

/**
 * Defines a migrate message class.
 */
class MigrateMessage implements MigrateMessageInterface {
    
    /**
     * The map between migrate status and watchdog severity.
     *
     * @var array
     */
    protected $map = [
        'status' => RfcLogLevel::INFO,
        'error' => RfcLogLevel::ERROR,
    ];
    
    /**
     * {@inheritdoc}
     */
    public function display($message, $type = 'status') {
        $type = isset($this->map[$type]) ? $this->map[$type] : RfcLogLevel::NOTICE;
        \Drupal::logger('migrate')->log($type, $message);
    }

}

Classes

Title Deprecated Summary
MigrateMessage Defines a migrate message class.

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.