u_config_json: Remove bogus "No tracking node" messages

* open_tracking_settings() already reports missing tracking nodes.
* open_tracking_settings() can also fail for other reasons
This commit is contained in:
Christoph Haag 2021-03-24 18:37:32 +01:00 committed by Jakob Bornecrantz
parent 45d889e390
commit 8f16118020

View file

@ -267,7 +267,6 @@ u_config_json_get_tracking_overrides(struct u_config_json *json,
{
cJSON *t = open_tracking_settings(json);
if (t == NULL) {
U_LOG_E("No tracking node");
return false;
}
@ -317,7 +316,6 @@ u_config_json_get_tracking_settings(struct u_config_json *json, struct xrt_setti
{
cJSON *t = open_tracking_settings(json);
if (t == NULL) {
U_LOG_E("No tracking node");
return false;
}