Updated Drupal to 8.6. This goes with the following updates because it's possible...
[yaffs-website] / web / core / modules / views / views.views.inc
index 633ce9b9da802408b922f3b16478b90f125438bf..024d499738c1b0d279901e28d9b2745372b3ed8a 100644 (file)
@@ -375,9 +375,13 @@ function views_field_default_views_data(FieldStorageConfigInterface $field_stora
     else {
       // https://www.drupal.org/node/2451657#comment-11462881
       \Drupal::logger('views')->error(
-        t('A non-existent config entity name returned by FieldStorageConfigInterface::getBundles(): field name: %field, bundle: %bundle',
-          ['%field' => $field_name, '%bundle' => $bundle]
-        ));
+        'A non-existent config entity name returned by FieldStorageConfigInterface::getBundles(): entity type: %entity_type, bundle: %bundle, field name: %field',
+        [
+          '%entity_type' => $entity_type->id(),
+          '%bundle' => $bundle,
+          '%field' => $field_name,
+        ]
+      );
     }
   }