ue,phy: reduce log level when 2nd grant for same PID is registered

this resolves issue #2277 in which a warning was logged when
the CC worker decoded a 2nd phantom PDDCH.

It's difficult to avoid this 2nd PDDCH without addional computation
that we don't want add at this stage.

Rather than filtering out the Warning in the log post-processing,
we reduce the log level to info.
master
Andre Puschmann 4 years ago
parent dc4283c572
commit f0818275f0

@ -440,7 +440,7 @@ void phy_common::set_dl_pending_grant(uint32_t tti,
pending_dl_grant[tti % FDD_HARQ_DELAY_UL_MS][cc_idx].grant_cc_idx = grant_cc_idx;
pending_dl_grant[tti % FDD_HARQ_DELAY_UL_MS][cc_idx].enable = true;
} else {
Warning("set_dl_pending_grant: cc=%d already exists", cc_idx);
Info("set_dl_pending_grant: cc=%d already exists", cc_idx);
}
}

Loading…
Cancel
Save