remove warning when RAR fails to allocate in a given TTI due to lack of space

This commit is contained in:
Francisco Paisana 2021-01-11 21:18:00 +00:00
parent bc8e65c82f
commit 9883dc2171
1 changed files with 1 additions and 1 deletions

View File

@ -741,7 +741,7 @@ std::pair<alloc_outcome_t, uint32_t> 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;
}