Log.php

Same filename in this branch
  1. 8.9.x core/lib/Drupal/Core/Database/Log.php
Same filename in other branches
  1. 9 core/modules/migrate/src/Plugin/migrate/process/Log.php
  2. 9 core/lib/Drupal/Core/Database/Log.php
  3. 10 core/modules/migrate/src/Plugin/migrate/process/Log.php
  4. 10 core/lib/Drupal/Core/Database/Log.php
  5. 11.x core/modules/migrate/src/Plugin/migrate/process/Log.php
  6. 11.x core/lib/Drupal/Core/Database/Log.php

Namespace

Drupal\migrate\Plugin\migrate\process

File

core/modules/migrate/src/Plugin/migrate/process/Log.php

View source
<?php

namespace Drupal\migrate\Plugin\migrate\process;

use Drupal\migrate\MigrateExecutableInterface;
use Drupal\migrate\ProcessPluginBase;
use Drupal\migrate\Row;

/**
 * Logs values without changing them.
 *
 * The log plugin will log the values that are being processed by other plugins.
 *
 * Example:
 * @code
 * process:
 *   bar:
 *     plugin: log
 *     source: foo
 * @endcode
 *
 * @see \Drupal\migrate\Plugin\MigrateProcessInterface
 *
 * @MigrateProcessPlugin(
 *   id = "log"
 * )
 */
class Log extends ProcessPluginBase {
    
    /**
     * {@inheritdoc}
     */
    public function transform($value, MigrateExecutableInterface $migrate_executable, Row $row, $destination_property) {
        // Log the value.
        $migrate_executable->saveMessage($value);
        // Pass through the same value we received.
        return $value;
    }

}

Classes

Title Deprecated Summary
Log Logs values without changing them.

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