log: change a LOGPC to LOGP in gprs_rlcmac_ts_alloc.cpp

Change-Id: Iedbbbe434fc2ea4191a142596cbc8e673d265050
This commit is contained in:
Neels Hofmeyr 2021-08-12 14:04:31 +02:00
parent 5ba4a034b7
commit 764db8a126
1 changed files with 3 additions and 3 deletions

View File

@ -738,9 +738,9 @@ static int tbf_select_slot_set(const gprs_rlcmac_tbf *tbf, const gprs_rlcmac_trx
masked_override_with(slot_info, sl, 'D');
}
LOGPC(DRLCMAC, LOGL_DEBUG, "Selected %s slots: (TS=0)\"%s\"(TS=7), %s\n",
is_ul ? "UL" : "DL",
slot_info, single ? "single" : "multi");
LOGP(DRLCMAC, LOGL_DEBUG, "Selected %s slots: (TS=0)\"%s\"(TS=7), %s\n",
is_ul ? "UL" : "DL",
slot_info, single ? "single" : "multi");
return sl;
}