3b9c7b2 introduced stricter RC check.
This commit provides user feedback when config callback is failing.
Change-Id: Ia9c13048e95559b5be84477fc1602ff418a1df37
for (int i = 0, ret = 0; i < ci->children_num; i++) {
if (ci->children[i].children == NULL) {
ret = dispatch_value_plugin(name, ci->children + i);
- if (ret != 0)
+ if (ret != 0) {
+ ERROR("dispatch for plugin %s returned non-zero code : %i", name, ret);
return ret;
+ }
} else {
WARNING("There is a `%s' block within the "
"configuration for the %s plugin. "