@@ -148,11 +148,6 @@ optional<unsigned> pucch_allocator_impl::alloc_common_pucch_harq_ack_ue(cell_res
148148
149149 pucch_common_alloc_grid[slot_alloc[k0 + k1 + slot_alloc.cfg .ntn_cs_koffset ].slot .to_uint ()].emplace_back (tcrnti);
150150
151- logger.debug (" tc-rnti={}: PUCCH HARQ-ACK common with res_ind={} allocated for slot={}" ,
152- tcrnti,
153- pucch_res_indicator,
154- pucch_slot_alloc.slot );
155-
156151 return pucch_res_indicator;
157152}
158153
@@ -789,12 +784,8 @@ optional<unsigned> pucch_allocator_impl::allocate_new_format1_harq_grant(cell_sl
789784 const unsigned HARQ_BITS_IN_NEW_PUCCH_GRANT = 1 ;
790785 fill_pucch_ded_format1_grant (
791786 pucch_pdu, crnti, *pucch_harq_res_info.pucch_res , HARQ_BITS_IN_NEW_PUCCH_GRANT, sr_nof_bits::no_sr);
792- auto pucch_res_indicator = static_cast <unsigned >(pucch_harq_res_info.pucch_res_indicator );
787+ const auto pucch_res_indicator = static_cast <unsigned >(pucch_harq_res_info.pucch_res_indicator );
793788
794- logger.debug (" rnti={}: PUCCH HARQ-ACK allocation on F1 with res_ind={} for slot={} completed" ,
795- crnti,
796- pucch_res_indicator,
797- pucch_slot_alloc.slot );
798789 return pucch_res_indicator;
799790}
800791
@@ -950,17 +941,6 @@ optional<unsigned> pucch_allocator_impl::convert_to_format2_harq(cell_slot_resou
950941 sr_bits,
951942 csi1_nof_bits_only_harq);
952943
953- logger.debug (" rnti={}: PUCCH Format 2 grant allocation with {} H-ACK, {} SR, {} CSI bits with res_ind={} for "
954- " slot={} completed" ,
955- rnti,
956- curr_harq_bits + harq_ack_bits_increment,
957- sr_nof_bits_to_uint (sr_bits),
958- csi1_nof_bits_only_harq,
959- format2_res.pucch_res_indicator ,
960- pucch_slot_alloc.slot
961-
962- );
963-
964944 return format2_res.pucch_res_indicator ;
965945}
966946
@@ -1046,12 +1026,6 @@ optional<unsigned> pucch_allocator_impl::change_format2_resource(cell_slot_resou
10461026 harq_ack_bits_increment,
10471027 sr_bits_to_report,
10481028 csi_bits_to_report);
1049- logger.debug (" rnti={}: PUCCH Format 2 grant allocation with {} H-ACK, {} SR, {} CSI bits for slot={} completed" ,
1050- rnti,
1051- harq_ack_bits_increment,
1052- sr_nof_bits_to_uint (sr_bits_to_report),
1053- csi_bits_to_report,
1054- pucch_slot_alloc.slot );
10551029
10561030 return static_cast <unsigned >(format2_res.pucch_res_indicator );
10571031}
@@ -1075,10 +1049,8 @@ optional<unsigned> pucch_allocator_impl::add_harq_ack_bit_to_format1_grant(pucch
10751049 }
10761050 // Update the HARQ, if present.
10771051 existing_harq_grant.format_1 .harq_ack_nof_bits ++;
1078- auto pucch_res_indicator = static_cast <unsigned >(pucch_res_idx);
1052+ const auto pucch_res_indicator = static_cast <unsigned >(pucch_res_idx);
10791053
1080- logger.debug (
1081- " rnti={}: HARQ-ACK mltplxd on existing PUCCH F1 with res_ind={} for slot={}" , rnti, pucch_res_indicator, sl_tx);
10821054 return pucch_res_indicator;
10831055}
10841056
@@ -1259,10 +1231,6 @@ optional<unsigned> pucch_allocator_impl::add_harq_bits_to_harq_f2_grant(pucch_in
12591231 }
12601232
12611233 existing_f2_grant.format_2 .harq_ack_nof_bits += harq_ack_bits_increment;
1262- logger.debug (" rnti={}: HARQ-ACK multiplexed on existing PUCCH F2 with res_ind={} for slot={}" ,
1263- existing_f2_grant.crnti ,
1264- pucch_f2_harq_cfg.pucch_res_indicator ,
1265- sl_tx);
12661234
12671235 return pucch_f2_harq_cfg.pucch_res_indicator ;
12681236}
0 commit comments