d/vive: Dump JSON config on debug instead of spew

This commit is contained in:
Jakob Bornecrantz 2020-01-13 14:53:24 +00:00 committed by Ryan Pavlik
parent 8ded6bac8b
commit 382813edd6

View file

@ -890,7 +890,7 @@ vive_init_defaults(struct vive_device *d)
bool
vive_parse_config(struct vive_device *d, char *json_string)
{
VIVE_SPEW(d, "JSON config:\n%s\n", json_string);
VIVE_DEBUG(d, "JSON config:\n%s\n", json_string);
cJSON *json = cJSON_Parse(json_string);
if (!cJSON_IsObject(json)) {