From e8ab1cf241b56577cff6c03b5404d1771e19f543 Mon Sep 17 00:00:00 2001
From: Navid Nikaein <navid.nikaein@eurecom.fr>
Date: Wed, 24 Sep 2014 17:49:51 +0000
Subject: [PATCH] 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
---
 openair2/LAYER2/PDCP_v10.1.0/pdcp_netlink.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/openair2/LAYER2/PDCP_v10.1.0/pdcp_netlink.c b/openair2/LAYER2/PDCP_v10.1.0/pdcp_netlink.c
index 84f509c4a42..76d272c46d0 100644
--- a/openair2/LAYER2/PDCP_v10.1.0/pdcp_netlink.c
+++ b/openair2/LAYER2/PDCP_v10.1.0/pdcp_netlink.c
@@ -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);
-- 
GitLab