Commit 927c3102 authored by Florian Kaltenberger's avatar Florian Kaltenberger

enabling T tracer for dlsim to get control of log messages

parent cfef9ef0
...@@ -9,5 +9,5 @@ set(MU_RECIEVER False) ...@@ -9,5 +9,5 @@ set(MU_RECIEVER False)
set(NAS_UE False) set(NAS_UE False)
set(MESSAGE_CHART_GENERATOR False) set(MESSAGE_CHART_GENERATOR False)
set(RRC_ASN1_VERSION "Rel14") set(RRC_ASN1_VERSION "Rel14")
set(T_TRACER False) set(T_TRACER True)
include(${CMAKE_CURRENT_SOURCE_DIR}/../CMakeLists.txt) include(${CMAKE_CURRENT_SOURCE_DIR}/../CMakeLists.txt)
...@@ -546,7 +546,7 @@ int main(int argc, char **argv) ...@@ -546,7 +546,7 @@ int main(int argc, char **argv)
int c; int c;
int k,i,j,aa; int k,i,j,aa;
int re; int re;
int loglvl=OAILOG_DEBUG; int loglvl=OAILOG_WARNING;
int s,Kr,Kr_bytes; int s,Kr,Kr_bytes;
...@@ -1073,12 +1073,8 @@ int main(int argc, char **argv) ...@@ -1073,12 +1073,8 @@ int main(int argc, char **argv)
AssertFatal(load_configmodule(argc,argv) != NULL, AssertFatal(load_configmodule(argc,argv) != NULL,
"cannot load configuration module, exiting\n"); "cannot load configuration module, exiting\n");
logInit(); logInit();
// enable these lines if you need debug info
set_glog(loglvl); set_glog(loglvl);
// moreover you need to init itti with the following line T_stdout = 1;
// however itti will catch all signals, so ctrl-c won't work anymore
// alternatively you can disable ITTI completely in CMakeLists.txt
//itti_init(TASK_MAX, THREAD_MAX, MESSAGES_ID_MAX, tasks_info, messages_info, messages_definition_xml, NULL);
if (common_flag == 0) { if (common_flag == 0) {
......
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