Issue #3258969 by heddn: Wrong argument for @message in ModuleInstaller::install call to watchdog_exception

(cherry picked from commit 421f02acd2)
merge-requests/1413/merge
Alex Pott 2022-02-01 00:15:05 +00:00
parent b5962456e4
commit 8b6b947bbd
No known key found for this signature in database
GPG Key ID: BDA67E7EE836E5CE
1 changed files with 1 additions and 1 deletions

View File

@ -307,7 +307,7 @@ class ModuleInstaller implements ModuleInstallerInterface {
$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()]);
}
}
}