Skip to content
Snippets Groups Projects
Commit 603bea34 authored by Chris Manton's avatar Chris Manton
Browse files

Re-log btif/src/stack_manager

Bug: 163134718
Test: gd/cert/run
Tag: #refactor
BYPASS_LONG_LINES_REASON: Bluetooth likes 120 lines

Change-Id: I3403836b9e358ecd2967de25a72cba421641e24b
parent f93fece9
No related branches found
No related tags found
No related merge requests found
...@@ -197,10 +197,10 @@ inline const module_t* get_local_module(const char* name) { ...@@ -197,10 +197,10 @@ inline const module_t* get_local_module(const char* name) {
static void event_init_stack(void* context) { static void event_init_stack(void* context) {
semaphore_t* semaphore = (semaphore_t*)context; semaphore_t* semaphore = (semaphore_t*)context;
LOG_INFO("%s is initializing the stack", __func__); LOG_INFO("is initializing the stack");
if (stack_is_initialized) { if (stack_is_initialized) {
LOG_INFO("%s found the stack already in initialized state", __func__); LOG_INFO("found the stack already in initialized state");
} else { } else {
module_management_start(); module_management_start();
...@@ -220,7 +220,7 @@ static void event_init_stack(void* context) { ...@@ -220,7 +220,7 @@ static void event_init_stack(void* context) {
stack_is_initialized = true; stack_is_initialized = true;
} }
LOG_INFO("%s finished", __func__); LOG_INFO("finished");
if (semaphore) semaphore_post(semaphore); if (semaphore) semaphore_post(semaphore);
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment