diff --git a/openair2/UTIL/LOG/log.c b/openair2/UTIL/LOG/log.c index 46d19f08df59d05eaa25bbcc678a9afa87eec191..9c62e038d7a640cd0e1d3d04f4640195d29472b8 100755 --- a/openair2/UTIL/LOG/log.c +++ b/openair2/UTIL/LOG/log.c @@ -300,6 +300,14 @@ int logInit (void) g_log->log_component[OSA].filelog = 0; g_log->log_component[OSA].filelog_name = ""; + g_log->log_component[ENB_APP].name = "ENB_APP"; + g_log->log_component[ENB_APP].level = LOG_EMERG; + g_log->log_component[ENB_APP].flag = LOG_MED; + g_log->log_component[ENB_APP].interval = 1; + g_log->log_component[ENB_APP].fd = 0; + g_log->log_component[ENB_APP].filelog = 0; + g_log->log_component[ENB_APP].filelog_name = ""; + g_log->level2string[LOG_EMERG] = "G"; //EMERG g_log->level2string[LOG_ALERT] = "A"; // ALERT g_log->level2string[LOG_CRIT] = "C"; // CRITIC diff --git a/openair2/UTIL/LOG/log.h b/openair2/UTIL/LOG/log.h index 2f866c5159296d03296a98643b03fc88f2649699..d2131a680568caa09eedbd9405a81d268e366f89 100755 --- a/openair2/UTIL/LOG/log.h +++ b/openair2/UTIL/LOG/log.h @@ -257,6 +257,7 @@ typedef enum { SCTP, HW, OSA, + ENB_APP, MAX_LOG_COMPONENTS } comp_name_t;