X-Git-Url: https://gerrit.o-ran-sc.org/r/gitweb?a=blobdiff_plain;f=src%2Fcu_stub%2Fcu_stub.c;h=ebaade2fac2a6948521c0e2c2b963c30d4becfca;hb=d74291a3d7dadc783460e134b0e24f2b9ae07b2a;hp=d1c1b1dff56d79cbd198c699904a5d8a589f31f2;hpb=c5c8d87cedf8b51e40989c21c0dd8cd1dab1b073;p=o-du%2Fl2.git diff --git a/src/cu_stub/cu_stub.c b/src/cu_stub/cu_stub.c index d1c1b1dff..ebaade2fa 100644 --- a/src/cu_stub/cu_stub.c +++ b/src/cu_stub/cu_stub.c @@ -84,7 +84,7 @@ void sctpNtfyInd(CmInetSctpNotification *ntfy) void init_log() { - openlog("CU_STUB",LOG_CONS | LOG_PID | LOG_NDELAY, LOG_LOCAL1); + openlog("CU_STUB",LOG_CONS | LOG_PID | LOG_NDELAY, LOG_LOCAL1); } /******************************************************************* * @@ -112,7 +112,7 @@ uint8_t tst() pthread_attr_t attr; init_log(); - DU_LOG("\nStarting CU_STUB\n"); + DU_LOG("\nINFO --> CU_STUB : Starting CU_STUB\n"); /* Start thread to receive console input */ pthread_attr_init(&attr); @@ -122,7 +122,7 @@ uint8_t tst() retVal = pthread_create(&conThrdId, &attr, cuConsoleHandler, NULLP); if(retVal != 0) { - DU_LOG("\nCU_STUB: Thread creation failed. Cause %d", retVal); + DU_LOG("\nERROR --> CU_STUB : Thread creation failed. Cause %d", retVal); } pthread_attr_destroy(&attr); @@ -164,7 +164,7 @@ void readCuCfg() { uint32_t ipv4_du, ipv4_cu; - DU_LOG("\nReading CU configurations"); + DU_LOG("\nDEBUG --> CU_STUB : Reading CU configurations"); #ifdef O1_ENABLE if( getStartupConfig(&g_cfg) != ROK ) @@ -246,7 +246,7 @@ void *cuConsoleHandler(void *args) if((ch = getchar()) == 'd') { /* Start Pumping data from CU to DU */ - DU_LOG("\nEGTP: Sending DL User Data"); + DU_LOG("\nDEBUG --> EGTP: Sending DL User Data"); cuEgtpDatReq(); } }