From b6bca8da532974c25eed74305ab1880fb4dfa5af Mon Sep 17 00:00:00 2001 From: winckel <winckel@eurecom.fr> Date: Wed, 4 Dec 2013 15:21:39 +0000 Subject: [PATCH] Created a log component for eNB application. git-svn-id: http://svn.eurecom.fr/openair4G/trunk@4590 818b1a75-f10b-46b9-bf7c-635c3b92a50f --- openair2/UTIL/LOG/log.c | 8 ++++++++ openair2/UTIL/LOG/log.h | 1 + 2 files changed, 9 insertions(+) diff --git a/openair2/UTIL/LOG/log.c b/openair2/UTIL/LOG/log.c index 46d19f08df..9c62e038d7 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 2f866c5159..d2131a6805 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; -- GitLab