diff --git a/src/monocoque/helper/confighelper.c b/src/monocoque/helper/confighelper.c index 56c8b11..479e48f 100644 --- a/src/monocoque/helper/confighelper.c +++ b/src/monocoque/helper/confighelper.c @@ -866,14 +866,14 @@ int uiloadconfig(const char* config_file_str, int confignum, int configureddevic config_setting_t* config_device = config_setting_get_elem(config_devices, i); const char* device_type; const char* device_subtype; - //const char* device_config_file; + const char* device_config_file; config_setting_lookup_string(config_device, "device", &device_type); config_setting_lookup_string(config_device, "type", &device_subtype); - //config_setting_lookup_string(config_device, "config", &device_config_file); + config_setting_lookup_string(config_device, "config", &device_config_file); - //slogt("device type: %s", device_type); - //slogt("device sub type: %s", device_subtype); - //slogt("device config file: %s", device_config_file); + slogt("device type: %s", device_type); + slogt("device sub type: %s", device_subtype); + slogt("device config file: %s", device_config_file); if (error == MONOCOQUE_ERROR_NONE) { error = devsetup(device_type, device_subtype, NULL, ms, &settings, config_device);