fix tbf_select_slot_set(): use LOGP() instead of LOGPC()

Change-Id: I8e9ae854d147735357921f71d9a02862376a50b2
diff --git a/src/gprs_rlcmac_ts_alloc.cpp b/src/gprs_rlcmac_ts_alloc.cpp
index 496d19b..16498ce 100644
--- a/src/gprs_rlcmac_ts_alloc.cpp
+++ b/src/gprs_rlcmac_ts_alloc.cpp
@@ -709,11 +709,11 @@
 	if (tbf->direction != GPRS_RLCMAC_DL_TBF) {
 		snprintf(slot_info, 9, OSMO_BIT_SPEC, OSMO_BIT_PRINT_EX(reserved_ul_slots, 'u'));
 		masked_override_with(slot_info, sl, 'U');
-		LOGPC(DRLCMAC, LOGL_DEBUG, "- Selected UL");
+		LOGP(DRLCMAC, LOGL_DEBUG, "- Selected UL");
 	} else {
 		snprintf(slot_info, 9, OSMO_BIT_SPEC, OSMO_BIT_PRINT_EX(reserved_dl_slots, 'd'));
 		masked_override_with(slot_info, sl, 'D');
-		LOGPC(DRLCMAC, LOGL_DEBUG, "- Selected DL");
+		LOGP(DRLCMAC, LOGL_DEBUG, "- Selected DL");
 	}
 
 	LOGPC(DRLCMAC, LOGL_DEBUG, " slots: (TS=0)\"%s\"(TS=7), %s\n", slot_info, single ? "single" : "multi");