Logging: change error to warning

This is in preparation for https://developer.blender.org/D8665.
This commit is contained in:
Jacques Lucke 2020-08-26 17:48:20 +02:00
parent 14608c5e86
commit 3185e17844
1 changed files with 1 additions and 1 deletions

View File

@ -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;
}
}