Commit e8ab1cf2 authored by Navid Nikaein's avatar Navid Nikaein

adding logs to indicate when a packet is received from IP to PDCP layer

git-svn-id: http://svn.eurecom.fr/openair4G/trunk@5806 818b1a75-f10b-46b9-bf7c-635c3b92a50f
parent 09c40e42
......@@ -268,7 +268,7 @@ void *pdcp_netlink_thread_fct(void *arg) {
new_data_p->pdcp_read_header.inst, pdcp_netlink_nb_element_enb);
}
LOG_D(PDCP, "[NETLINK_THREAD] En-queueing packet for eNB instance %d\n", new_data_p->pdcp_read_header.inst);
LOG_I(PDCP,"[NETLINK_THREAD] IP->PDCP : En-queueing packet for eNB instance %d\n", new_data_p->pdcp_read_header.inst);
/* Enqueue the element in the right queue */
lfds611_queue_guaranteed_enqueue(pdcp_netlink_queue_enb[new_data_p->pdcp_read_header.inst], new_data_p);
......@@ -281,7 +281,7 @@ void *pdcp_netlink_thread_fct(void *arg) {
new_data_p->pdcp_read_header.inst, pdcp_netlink_nb_element_ue);
}
LOG_D(PDCP, "[NETLINK_THREAD] En-queueing packet for UE instance %d\n", new_data_p->pdcp_read_header.inst);
LOG_I(PDCP,"[NETLINK_THREAD] IP->PDCP : En-queueing packet for UE instance %d\n", new_data_p->pdcp_read_header.inst);
/* Enqueue the element in the right queue */
lfds611_queue_guaranteed_enqueue(pdcp_netlink_queue_ue[new_data_p->pdcp_read_header.inst], new_data_p);
......
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