misc: Print the payload that is not known

Print the payload type that is not handled as this allows one to
look it up in the specification.
This commit is contained in:
Holger Hans Peter Freyther 2013-10-16 16:37:22 +02:00
parent 26da8361e9
commit 70862c9409
1 changed files with 1 additions and 1 deletions

View File

@ -1174,7 +1174,7 @@ int gprs_rlcmac_rcv_block(uint8_t trx, uint8_t ts, uint8_t *data, uint8_t len,
LOGP(DRLCMAC, LOGL_NOTICE, "GPRS_RLCMAC_CONTROL_BLOCK_OPT block payload is not supported.\n");
break;
default:
LOGP(DRLCMAC, LOGL_NOTICE, "Unknown RLCMAC block payload.\n");
LOGP(DRLCMAC, LOGL_NOTICE, "Unknown RLCMAC block payload(%u).\n", payload);
rc = -EINVAL;
}