watchdog_exception() is not replaced properly

Created on 25 March 2024, about 1 year ago
Updated 7 June 2024, 10 months ago

Drupal version

Rector's patch want to make this change:

-      watchdog_exception('module_builder', $e);
+      \Drupal\Component\Utility\DeprecationHelper::backwardsCompatibleCall(\Drupal::VERSION, '10.1.0', fn() => \Drupal\Core\Utility\Error::logException(\Drupal::logger('module_builder'), $e), fn() => watchdog_exception('module_builder', $e));

But the CR at https://www.drupal.org/node/2932520 says:

$logger = \Drupal::logger('update');
Error::logException($logger, $exception);

Drupal Rector version

Problem / Motivation

🐛 Bug report
Status

Closed: works as designed

Component

Code

Created by

🇬🇧United Kingdom joachim

Live updates comments and jobs are added and updated live.
Sign in to follow issues

Comments & Activities

  • Issue created by @joachim
  • 🇵🇹Portugal jcnventura

    I think that the change is actually good like that. Doing the replacement in the CR will force the .info.yml to be only "^10.1 || ^11". Either rector does that change in the .info.yml or it stays as is and rector can simply append "|| ^11" to the current core_version_requirement.

  • 🇳🇱Netherlands bbrala Netherlands

    Yes this change is because of backwards compatiblity. If you run rector on Drupal version that is higher than the version the function was deprecated in it will not add the BC layer.

  • 🇳🇱Netherlands bbrala Netherlands
  • Status changed to Closed: works as designed 10 months ago
  • 🇳🇱Netherlands bbrala Netherlands
Production build 0.71.5 2024