Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'source/blender/makesrna')
-rw-r--r--source/blender/makesrna/intern/rna_access_compare_override.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/source/blender/makesrna/intern/rna_access_compare_override.c b/source/blender/makesrna/intern/rna_access_compare_override.c
index 40b04399ac9..6fd1609e77b 100644
--- a/source/blender/makesrna/intern/rna_access_compare_override.c
+++ b/source/blender/makesrna/intern/rna_access_compare_override.c
@@ -973,13 +973,15 @@ static void rna_property_override_apply_ex(Main *bmain,
ptr_item_storage = &private_ptr_item_storage;
if (ptr_item_dst->type == NULL) {
- printf("Failed to find destination sub-item '%s' in new override data '%s'\n",
+ printf("Failed to find destination sub-item '%s' of '%s' in new override data '%s'\n",
opop->subitem_reference_name,
+ op->rna_path,
ptr_dst->owner_id->name);
}
if (ptr_item_src->type == NULL) {
- printf("Failed to find source sub-item '%s' in old override data '%s'\n",
+ printf("Failed to find source sub-item '%s' of '%s' in old override data '%s'\n",
opop->subitem_local_name,
+ op->rna_path,
ptr_src->owner_id->name);
}
}