Skip to content
Snippets Groups Projects
Unverified Commit 7151900f authored by Alex Pott's avatar Alex Pott
Browse files

Issue #2985907 by pasan.gamage, acbramley, dawehner, alexpott, DYdave: Add...

Issue #2985907 by pasan.gamage, acbramley, dawehner, alexpott, DYdave: Add entity type into error description
parent a9f1973c
Branches
Tags
2 merge requests!7452Issue #1797438. HTML5 validation is preventing form submit and not fully...,!789Issue #3210310: Adjust Database API to remove deprecated Drupal 9 code in Drupal 10
...@@ -375,9 +375,13 @@ function views_field_default_views_data(FieldStorageConfigInterface $field_stora ...@@ -375,9 +375,13 @@ function views_field_default_views_data(FieldStorageConfigInterface $field_stora
else { else {
// https://www.drupal.org/node/2451657#comment-11462881 // https://www.drupal.org/node/2451657#comment-11462881
\Drupal::logger('views')->error( \Drupal::logger('views')->error(
t('A non-existent config entity name returned by FieldStorageConfigInterface::getBundles(): field name: %field, bundle: %bundle', 'A non-existent config entity name returned by FieldStorageConfigInterface::getBundles(): entity type: %entity_type, bundle: %bundle, field name: %field',
['%field' => $field_name, '%bundle' => $bundle] [
)); '%entity_type' => $entity_type->id(),
'%bundle' => $bundle,
'%field' => $field_name,
]
);
} }
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment