X-Git-Url: https://gerrit.o-ran-sc.org/r/gitweb?a=blobdiff_plain;f=src%2F5gnrsch%2Frg_sch_dbm.c;h=cd1534f983e4e4e8c53520be0c1ee1aa7cf6444b;hb=53b8b63c2fff0f2adbf2c66ed182a32bb4682bf7;hp=92dde46d9bf88c35883c8bbf6cf2f97fb471e7e1;hpb=e8126b742c458158da117396d52ace22d59e9d47;p=o-du%2Fl2.git diff --git a/src/5gnrsch/rg_sch_dbm.c b/src/5gnrsch/rg_sch_dbm.c index 92dde46d9..cd1534f98 100755 --- a/src/5gnrsch/rg_sch_dbm.c +++ b/src/5gnrsch/rg_sch_dbm.c @@ -31,9 +31,6 @@ /** @file rg_sch_dbm.c @brief This file contains the APIs exposed for the database handling of the scheduler. */ -static const char* RLOG_MODULE_NAME="MAC"; -static int RLOG_FILE_ID=230; -static int RLOG_MODULE_ID=4096; /* header include files -- defines (.h) */ #include "common_def.h" #include "lrg.h" @@ -53,8 +50,6 @@ static int RLOG_MODULE_ID=4096; #include "rg_sch_inf.x" #include "rg_sch.x" #include "rg_sch_cmn.x" -#include "rl_interface.h" -#include "rl_common.h" /* local defines */ @@ -1312,7 +1307,7 @@ RgSchRntiLnk* rgSCHDbmGetRnti(RgSchCellCb *cellCb) if (!(cellCb->rntiDb.freeRnti)) { - RLOG_ARG1(L_ERROR,DBG_CELLID,cellCb->cellId,"RNTI exhausted count:%d", + DU_LOG("\nERROR --> SCH : RNTI exhausted count:%d", cellCb->rntiDb.count); return (NULLP); } @@ -1335,7 +1330,7 @@ RgSchRntiLnk* rgSCHDbmGetRnti(RgSchCellCb *cellCb) cellCb->rntiDb.count--; - printf("rgSCHDbmGetRnti::rntiLnk->rnti %u\n",rntiLnk->rnti); + DU_LOG("\nINFO --> SCH : rgSCHDbmGetRnti::rntiLnk->rnti %u\n",rntiLnk->rnti); return (rntiLnk); } /* rgSCHDbmGetRnti */