From bf064d2864fdd6dedfefdd25f89694ea0ec1166e Mon Sep 17 00:00:00 2001 From: catch <catch@35733.no-reply.drupal.org> Date: Fri, 3 Mar 2023 11:36:23 +0000 Subject: [PATCH] Issue #3173639 by mohit_aghera, godotislate, Kristen Pol, quietone: Entity storage exception during module install missing !message parameter in watchdog_exception() call --- core/lib/Drupal/Core/Extension/ModuleInstaller.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/lib/Drupal/Core/Extension/ModuleInstaller.php b/core/lib/Drupal/Core/Extension/ModuleInstaller.php index 9d9c8981ce19..d6f940e6e8ca 100644 --- a/core/lib/Drupal/Core/Extension/ModuleInstaller.php +++ b/core/lib/Drupal/Core/Extension/ModuleInstaller.php @@ -302,7 +302,7 @@ public function install(array $module_list, $enable_dependencies = TRUE) { $update_manager->installFieldStorageDefinition($storage_definition->getName(), $entity_type->id(), $module, $storage_definition); } catch (EntityStorageException $e) { - watchdog_exception('system', $e, 'An error occurred while notifying the creation of the @name field storage definition: "@message" in %function (line %line of %file).', ['@name' => $storage_definition->getName()]); + watchdog_exception('system', $e, 'An error occurred while notifying the creation of the @name field storage definition: "@message" in %function (line %line of %file).', ['@name' => $storage_definition->getName(), '@message' => $e->getMessage()]); } } } -- GitLab