Chris@0: RfcLogLevel::INFO, Chris@0: 'error' => RfcLogLevel::ERROR, Chris@0: ]; Chris@0: Chris@0: /** Chris@0: * {@inheritdoc} Chris@0: */ Chris@0: public function display($message, $type = 'status') { Chris@0: $type = isset($this->map[$type]) ? $this->map[$type] : RfcLogLevel::NOTICE; Chris@0: \Drupal::logger('migrate')->log($type, $message); Chris@0: } Chris@0: Chris@0: }