u_config_json: Change node not found error->info

As our config grows it will happen more often that users won't have all possible nodes.
This commit is contained in:
Christoph Haag 2021-03-24 19:14:04 +01:00 committed by Jakob Bornecrantz
parent 3ba9a9411a
commit 08db19beca

View file

@ -87,7 +87,7 @@ get_obj(cJSON *json, const char *name)
{
cJSON *item = cJSON_GetObjectItemCaseSensitive(json, name);
if (item == NULL) {
U_LOG_E("Failed to find node '%s'!", name);
U_LOG_I("JSON does not contain node '%s'!", name);
}
return item;
}