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:
authorJacques Lucke <jacques@blender.org>2020-08-26 18:48:20 +0300
committerJacques Lucke <jacques@blender.org>2020-08-26 18:48:20 +0300
commit3185e17844caa72d2922994a16f0f50333adbbc8 (patch)
treea0c8eac3bfe536d1e9a0a3ccb63ddc3d948f5e41 /source/blender/blenkernel/intern
parent14608c5e86af35df02035c211d8e778ecec63cba (diff)
Logging: change error to warning
This is in preparation for https://developer.blender.org/D8665.
Diffstat (limited to 'source/blender/blenkernel/intern')
-rw-r--r--source/blender/blenkernel/intern/anim_sys.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/blenkernel/intern/anim_sys.c b/source/blender/blenkernel/intern/anim_sys.c
index 8fe57f1bfa0..69e70cffdb2 100644
--- a/source/blender/blenkernel/intern/anim_sys.c
+++ b/source/blender/blenkernel/intern/anim_sys.c
@@ -2870,7 +2870,7 @@ void BKE_animsys_eval_driver(Depsgraph *depsgraph, ID *id, int driver_index, FCu
/* set error-flag if evaluation failed */
if (ok == 0) {
- CLOG_ERROR(&LOG, "invalid driver - %s[%d]", fcu->rna_path, fcu->array_index);
+ CLOG_WARN(&LOG, "invalid driver - %s[%d]", fcu->rna_path, fcu->array_index);
driver_orig->flag |= DRIVER_FLAG_INVALID;
}
}