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