diff --git a/lib/src/phy/phch/dci_nr.c b/lib/src/phy/phch/dci_nr.c index f18656c0e..f52ec4fe9 100644 --- a/lib/src/phy/phch/dci_nr.c +++ b/lib/src/phy/phch/dci_nr.c @@ -2072,10 +2072,11 @@ uint32_t srsran_dci_ctx_to_str(const srsran_dci_ctx_t* ctx, char* str, uint32_t len = srsran_print_check(str, str_len, len, - "%s-rnti=%04x dci=%s ", + "%s-rnti=%04x dci=%s ss=%s", srsran_rnti_type_str_short(ctx->rnti_type), ctx->rnti, - srsran_dci_format_nr_string(ctx->format)); + srsran_dci_format_nr_string(ctx->format), + srsran_ss_type_str(ctx->ss_type)); if (ctx->format != srsran_dci_format_nr_rar) { len = srsran_print_check(str, str_len, len, "L=%d cce=%d ", ctx->location.L, ctx->location.ncce);