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); } }