Loading system/btcore/src/module.cc +0 −2 Original line number Diff line number Diff line Loading @@ -61,13 +61,11 @@ bool module_init(const module_t* module) { CHECK(module != NULL); CHECK(get_module_state(module) == MODULE_STATE_NONE); LOG_INFO(LOG_TAG, "%s Initializing module \"%s\"", __func__, module->name); if (!call_lifecycle_function(module->init)) { LOG_ERROR(LOG_TAG, "%s Failed to initialize module \"%s\"", __func__, module->name); return false; } LOG_INFO(LOG_TAG, "%s Initialized module \"%s\"", __func__, module->name); set_module_state(module, MODULE_STATE_INITIALIZED); return true; Loading system/main/bte_logmsg.cc +0 −1 Original line number Diff line number Diff line Loading @@ -205,7 +205,6 @@ static void load_levels_from_config(const config_t* config) { for (tBTTRC_FUNC_MAP* functions = &bttrc_set_level_map[0]; functions->trc_name; ++functions) { LOG_INFO(LOG_TAG, "BTE_InitTraceLevels -- %s", functions->trc_name); int value = config_get_int(config, CONFIG_DEFAULT_SECTION, functions->trc_name, -1); if (value != -1) functions->trace_level = value; Loading Loading
system/btcore/src/module.cc +0 −2 Original line number Diff line number Diff line Loading @@ -61,13 +61,11 @@ bool module_init(const module_t* module) { CHECK(module != NULL); CHECK(get_module_state(module) == MODULE_STATE_NONE); LOG_INFO(LOG_TAG, "%s Initializing module \"%s\"", __func__, module->name); if (!call_lifecycle_function(module->init)) { LOG_ERROR(LOG_TAG, "%s Failed to initialize module \"%s\"", __func__, module->name); return false; } LOG_INFO(LOG_TAG, "%s Initialized module \"%s\"", __func__, module->name); set_module_state(module, MODULE_STATE_INITIALIZED); return true; Loading
system/main/bte_logmsg.cc +0 −1 Original line number Diff line number Diff line Loading @@ -205,7 +205,6 @@ static void load_levels_from_config(const config_t* config) { for (tBTTRC_FUNC_MAP* functions = &bttrc_set_level_map[0]; functions->trc_name; ++functions) { LOG_INFO(LOG_TAG, "BTE_InitTraceLevels -- %s", functions->trc_name); int value = config_get_int(config, CONFIG_DEFAULT_SECTION, functions->trc_name, -1); if (value != -1) functions->trace_level = value; Loading