Skip to content

Commit 800b981

Browse files
committed
Merge branch 'MC-33122' into 2.3-develop
2 parents 53f9627 + 9d709b8 commit 800b981

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/Migration/Step/Eav/Integrity/AttributeGroupNames.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,10 +85,11 @@ protected function checkForErrors(array $attributeGroupsOfCatalogProduct, array
8585
$groupNamesToValidate = array_keys($this->groupNameToCodeMap->getMap('catalog_product'));
8686
foreach ($attributeGroupsOfCatalogProduct as $attributeSetId => $groupNames) {
8787
if (!empty(array_diff($groupNamesToValidate, $groupNames))) {
88-
$error = 'The product attribute set "%s" does not contain all required attribute group names "%s"';
88+
$error = 'The product attribute set "%s" (ID: %s) does not contain all required attribute group names "%s"';
8989
$error = sprintf(
9090
$error,
9191
$attributeSetsOfCatalogProduct[$attributeSetId],
92+
$attributeSetId,
9293
implode(', ', $groupNamesToValidate)
9394
);
9495
$errorDetails['document'] = $this->attributeGroupDocument;

0 commit comments

Comments
 (0)