Skip to content
Snippets Groups Projects
Commit 2e78ac63 authored by catch's avatar catch
Browse files

Issue #3173639 by mohit_aghera, godotislate, Kristen Pol, quietone: Entity...

Issue #3173639 by mohit_aghera, godotislate, Kristen Pol, quietone: Entity storage exception during module install missing !message parameter in watchdog_exception() call

(cherry picked from commit bf064d28)
parent e40be42b
No related branches found
No related tags found
5 merge requests!8506Draft: Issue #3456536 by ibrahim tameme,!5646Issue #3350972 by nod_: [random test failure]...,!5600Issue #3350972 by nod_: [random test failure]...,!5343Issue #3305066 by quietone, Rename RedirectLeadingSlashesSubscriber,!3603#ISSUE 3346218 Add a different message on edit comment
......@@ -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()]);
}
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment