diff --git a/executables/nr-gnb.c b/executables/nr-gnb.c
index c6c7d3b891ad87ddbe2d3fb3d797e60542f58f6d..4a655dfc576b0504b299f25484c5b73b4b5abfed 100644
--- a/executables/nr-gnb.c
+++ b/executables/nr-gnb.c
@@ -873,7 +873,6 @@ void init_gNB_proc(int inst) {
   gNB->threadPool = (tpool_t*)malloc(sizeof(tpool_t));
   gNB->respDecode = (notifiedFIFO_t*) malloc(sizeof(notifiedFIFO_t));
   int numCPU = sysconf(_SC_NPROCESSORS_ONLN);
-  printf("num threads %d\n",gNB->pusch_proc_threads);
   int threadCnt = min(numCPU, gNB->pusch_proc_threads);
   char ul_pool[80];
   sprintf(ul_pool,"-1");
diff --git a/openair2/LAYER2/NR_MAC_UE/nr_ue_procedures.c b/openair2/LAYER2/NR_MAC_UE/nr_ue_procedures.c
index c3c146a13110fabb0a09202e0578a85a3d0b666c..b69ecafc89cbc2544261dffd602e6dae5a12f6bf 100644
--- a/openair2/LAYER2/NR_MAC_UE/nr_ue_procedures.c
+++ b/openair2/LAYER2/NR_MAC_UE/nr_ue_procedures.c
@@ -952,7 +952,7 @@ int8_t nr_ue_decode_mib(module_id_t module_id,
                         void *pduP,
                         uint16_t cell_id)
 {
-  LOG_D(MAC,"[L2][MAC] decode mib\n");
+  LOG_I(MAC,"[L2][MAC] decode mib\n");
 
   NR_UE_MAC_INST_t *mac = get_mac_inst(module_id);