]> pilppa.org Git - lib1wire.git/blobdiff - src/DeviceConfig.cc
Refactoring and fixes.
[lib1wire.git] / src / DeviceConfig.cc
index 19cfbb9ab7c848cd3188faf8e3d40d86c1f4a037..f94637cca7ab5b3e716a7d33eebfec2426cbaa0d 100644 (file)
@@ -97,11 +97,11 @@ string DeviceConfig::get_cfg_value(string key) {
                        option  = uci_lookup_option(uci_handle->ctx, section, key.c_str());
                        switch (option->type) {
                                case UCI_TYPE_STRING:
-                                       log_info("config file: key: %s option name: %s, value: %s\n", key.c_str(), option->e.name, option->v.string);
+                                       log_info("key: %s option name: %s, value: %s\n", key.c_str(), option->e.name, option->v.string);
                                        ret_val = option->v.string;
                                        break;
                                default:
-                                       log_error("config file: key: %s can not parse parameter value\n", key.c_str());
+                                       log_error("key: %s Failed to read parameter value\n", key.c_str());
                                        break;
                        }
                }
@@ -155,15 +155,14 @@ ConfigHandle *DeviceConfig::load_device_config(string device_id_param) {
                        log_debug("uci_set_confdir: %s\n", cfg_dir.c_str());
                        uci_set_confdir(ctx, cfg_dir.c_str());
                        if (access(cfg_fl.c_str(), R_OK) == 0) {
-                               log_debug("loading file: %s\n", cfg_fl.c_str());
                                err_flg = uci_load(ctx, cfg_fl.c_str(), &pkg);
                                if (err_flg == UCI_OK) {
-                                       log_debug("Loaded device configuration: %s, UCI_OK: %d, err flg: %d\n.", cfg_fl.c_str(), UCI_OK, err_flg);
+                                       log_debug("Loaded device configuration file: %s\n.", cfg_fl.c_str());
                                        ret_val = new ConfigHandle(ctx, pkg);
                                }
                                else {
-                                       log_debug("Failed to load file: %s, UCI_OK: %d, err flg: %d\n.", cfg_fl.c_str(), UCI_OK, err_flg);
-                                       set_cfg_value(DEVICE_CONFIG_VALUE_KEY__TYPE, "unknowntype");
+                                       log_debug("Failed to load file: %s, err code: %d\n.", cfg_fl.c_str(), UCI_OK);
+                                       set_cfg_value(DEVICE_CONFIG_VALUE_KEY__TYPE, "");
                                }
                        }
                        else {