Commit 972f52fd authored by Robert Schmidt's avatar Robert Schmidt

fix remove LOG_N in restart

parent e1a598bc
...@@ -335,7 +335,7 @@ void handle_reconfiguration(module_id_t mod_id) ...@@ -335,7 +335,7 @@ void handle_reconfiguration(module_id_t mod_id)
clock_gettime(CLOCK_MONOTONIC, &start); clock_gettime(CLOCK_MONOTONIC, &start);
flexran_agent_info_t *flexran = RC.flexran[mod_id]; flexran_agent_info_t *flexran = RC.flexran[mod_id];
LOG_N(ENB_APP, "lte-softmodem soft-restart requested\n"); LOG_I(ENB_APP, "lte-softmodem soft-restart requested\n");
if (ENB_WAIT == flexran->node_ctrl_state) { if (ENB_WAIT == flexran->node_ctrl_state) {
/* this is already waiting, just release */ /* this is already waiting, just release */
...@@ -354,7 +354,7 @@ void handle_reconfiguration(module_id_t mod_id) ...@@ -354,7 +354,7 @@ void handle_reconfiguration(module_id_t mod_id)
/* node_ctrl_state should have value ENB_MAKE_WAIT only if this method is not /* node_ctrl_state should have value ENB_MAKE_WAIT only if this method is not
* executed by the FlexRAN thread */ * executed by the FlexRAN thread */
if (ENB_MAKE_WAIT == flexran->node_ctrl_state) { if (ENB_MAKE_WAIT == flexran->node_ctrl_state) {
LOG_N(ENB_APP, " * eNB %d: Waiting for FlexRAN RTController command *\n", mod_id); LOG_I(ENB_APP, " * eNB %d: Waiting for FlexRAN RTController command *\n", mod_id);
pthread_mutex_lock(&flexran->mutex_node_ctrl); pthread_mutex_lock(&flexran->mutex_node_ctrl);
flexran->node_ctrl_state = ENB_WAIT; flexran->node_ctrl_state = ENB_WAIT;
while (ENB_NORMAL_OPERATION != flexran->node_ctrl_state) while (ENB_NORMAL_OPERATION != flexran->node_ctrl_state)
...@@ -376,5 +376,5 @@ void handle_reconfiguration(module_id_t mod_id) ...@@ -376,5 +376,5 @@ void handle_reconfiguration(module_id_t mod_id)
end.tv_sec -= 1; end.tv_sec -= 1;
end.tv_nsec = end.tv_nsec - start.tv_nsec + 1000000000; end.tv_nsec = end.tv_nsec - start.tv_nsec + 1000000000;
} }
LOG_N(ENB_APP, "lte-softmodem restart succeeded in %ld.%ld s\n", end.tv_sec, end.tv_nsec / 1000000); LOG_I(ENB_APP, "lte-softmodem restart succeeded in %ld.%ld s\n", end.tv_sec, end.tv_nsec / 1000000);
} }
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment