Commit f701c02f authored by WEI-TAI CHEN's avatar WEI-TAI CHEN

Add Log for NR

parent b57054b6
......@@ -296,7 +296,7 @@ void* rrc_gnb_task(void* args_p){
msg_name_p = ITTI_MSG_NAME(msg_p);
instance = ITTI_MSG_INSTANCE(msg_p);
LOG_I(RRC,"Received message %s\n",msg_name_p);
LOG_I(NR_RRC,"Received message %s\n",msg_name_p);
switch (ITTI_MSG_ID(msg_p)) {
case TERMINATE_MESSAGE:
......
......@@ -172,6 +172,14 @@ int logInit (void)
g_log->log_component[PHY].filelog = 0;
g_log->log_component[PHY].filelog_name = "/tmp/phy.log";
g_log->log_component[NR_PHY].name = "NR_PHY";
g_log->log_component[NR_PHY].level = LOG_EMERG;
g_log->log_component[NR_PHY].flag = LOG_MED;
g_log->log_component[NR_PHY].interval = 1;
g_log->log_component[NR_PHY].fd = 0;
g_log->log_component[NR_PHY].filelog = 0;
g_log->log_component[NR_PHY].filelog_name = "/tmp/nrphy.log";
g_log->log_component[MAC].name = "MAC";
g_log->log_component[MAC].level = LOG_EMERG;
g_log->log_component[MAC].flag = LOG_MED;
......@@ -180,6 +188,14 @@ int logInit (void)
g_log->log_component[MAC].filelog = 0;
g_log->log_component[MAC].filelog_name = "/tmp/mac.log";
g_log->log_component[NR_MAC].name = "NR_MAC";
g_log->log_component[NR_MAC].level = LOG_EMERG;
g_log->log_component[NR_MAC].flag = LOG_MED;
g_log->log_component[NR_MAC].interval = 1;
g_log->log_component[NR_MAC].fd = 0;
g_log->log_component[NR_MAC].filelog = 0;
g_log->log_component[NR_MAC].filelog_name = "/tmp/nrmac.log";
g_log->log_component[OPT].name = "OPT";
g_log->log_component[OPT].level = LOG_EMERG;
g_log->log_component[OPT].flag = LOG_MED;
......@@ -212,6 +228,14 @@ int logInit (void)
g_log->log_component[RRC].filelog = 0;
g_log->log_component[RRC].filelog_name = "/tmp/rrc.log";
g_log->log_component[NR_RRC].name = "NR_RRC";
g_log->log_component[NR_RRC].level = LOG_TRACE;
g_log->log_component[NR_RRC].flag = LOG_MED;
g_log->log_component[NR_RRC].interval = 1;
g_log->log_component[NR_RRC].fd = 0;
g_log->log_component[NR_RRC].filelog = 0;
g_log->log_component[NR_RRC].filelog_name = "/tmp/nrrrc.log";
g_log->log_component[EMU].name = "EMU";
g_log->log_component[EMU].level = LOG_EMERG;
g_log->log_component[EMU].flag = LOG_MED;
......@@ -364,6 +388,14 @@ int logInit (void)
g_log->log_component[ENB_APP].filelog = 0;
g_log->log_component[ENB_APP].filelog_name = "";
g_log->log_component[GNB_APP].name = "GNB_APP";
g_log->log_component[GNB_APP].level = LOG_EMERG;
g_log->log_component[GNB_APP].flag = LOG_MED;
g_log->log_component[GNB_APP].interval = 1;
g_log->log_component[GNB_APP].fd = 0;
g_log->log_component[GNB_APP].filelog = 0;
g_log->log_component[GNB_APP].filelog_name = "";
g_log->log_component[FLEXRAN_AGENT].name = "FLEXRAN_AGENT";
g_log->log_component[FLEXRAN_AGENT].level = LOG_DEBUG;
g_log->log_component[FLEXRAN_AGENT].flag = LOG_MED;
......
......@@ -8,7 +8,7 @@ gNBs =
////////// Identification parameters:
gNB_ID = 0xe00;
cell_type = "CELL_MACRO_ENB";
cell_type = "CELL_MACRO_GNB";
gNB_name = "gNB-Eurecom-5GNRBox";
......
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