We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4104136 commit f10b741Copy full SHA for f10b741
lib/pdcp/pdcp_entity_tx.cpp
@@ -527,7 +527,11 @@ void pdcp_entity_tx::apply_security(pdcp_tx_buffer_info buf_info)
527
// apply reordering in UE executor
528
auto fn = [this, pdu_info = std::move(pdu_info)]() mutable { apply_reordering(std::move(pdu_info)); };
529
if (not ue_dl_executor.execute(std::move(fn))) {
530
- logger.log_warning("Dropped PDU, UE executor queue is full. count={}", tx_count);
+ if (cfg.custom.warn_on_drop) {
531
+ logger.log_warning("Dropped PDU, UE executor queue is full. count={}", tx_count);
532
+ } else {
533
+ logger.log_debug("Dropped PDU, UE executor queue is full. count={}", tx_count);
534
+ }
535
}
536
537
0 commit comments