From 9883dc21716476bb4f628f4134ac31d307530ac7 Mon Sep 17 00:00:00 2001 From: Francisco Paisana Date: Mon, 11 Jan 2021 21:18:00 +0000 Subject: [PATCH] remove warning when RAR fails to allocate in a given TTI due to lack of space --- srsenb/src/stack/mac/sched_grid.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srsenb/src/stack/mac/sched_grid.cc b/srsenb/src/stack/mac/sched_grid.cc index f7e670db9..d636bd05f 100644 --- a/srsenb/src/stack/mac/sched_grid.cc +++ b/srsenb/src/stack/mac/sched_grid.cc @@ -741,7 +741,7 @@ std::pair sf_sched::alloc_rar(uint32_t aggr_lvl, cons break; } if (ret.first != alloc_outcome_t::SUCCESS) { - log_h->warning("SCHED: Failed to allocate RAR due to lack of RBs\n"); + log_h->info("SCHED: Failed to allocate RAR due to lack of RBs\n"); } return ret; }