Cleaned SR logs

This commit is contained in:
Ismael Gomez 2019-07-11 15:47:49 +02:00
parent d595c4d882
commit da78f373b1
2 changed files with 2 additions and 2 deletions

View File

@ -408,7 +408,7 @@ bool bsr_proc::need_to_send_sr(uint32_t tti) {
if (!sr_is_sent && triggered_bsr_type == REGULAR) {
reset_sr = false;
sr_is_sent = true;
Info("BSR: Need to send sr: sr_is_sent=true, reset_sr=false, tti=%d, trigger_tti=%d\n", tti, trigger_tti);
Debug("BSR: Need to send sr: sr_is_sent=true, reset_sr=false, tti=%d, trigger_tti=%d\n", tti, trigger_tti);
ret = true;
}
pthread_mutex_unlock(&mutex);

View File

@ -50,7 +50,7 @@ void sr_proc::reset()
bool sr_proc::need_tx(uint32_t tti)
{
int last_tx_tti = phy_h->sr_last_tx_tti();
Info("SR: need_tx(): last_tx_tti=%d, tti=%d\n", last_tx_tti, tti);
Debug("SR: need_tx(): last_tx_tti=%d, tti=%d\n", last_tx_tti, tti);
if (last_tx_tti >= 0) {
if (tti > (uint32_t)last_tx_tti) {
if (tti - last_tx_tti > 8) {