diff options
author | Holger Hans Peter Freyther <zecke@selfish.org> | 2012-01-13 05:46:26 +0800 |
---|---|---|
committer | Holger Hans Peter Freyther <zecke@selfish.org> | 2012-01-12 23:17:23 +0100 |
commit | 6ecafef28f74ddae6c6db3458ca3d84179cdf953 (patch) | |
tree | 0cfeb0c710789743bc42c02ca0ff6a7c87c767c4 | |
parent | 301f01e938e72423079afe1a1836937053481fd6 (diff) |
lapd: Mention the L3 size of the payload being sent
-rw-r--r-- | src/gsm/lapd_core.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/gsm/lapd_core.c b/src/gsm/lapd_core.c index b1b5a1ba..74ffef30 100644 --- a/src/gsm/lapd_core.c +++ b/src/gsm/lapd_core.c @@ -1731,7 +1731,8 @@ static int lapd_data_req(struct osmo_dlsap_prim *dp, struct lapd_msg_ctx *lctx) struct lapd_datalink *dl = lctx->dl; struct msgb *msg = dp->oph.msg; - LOGP(DLLAPD, LOGL_INFO, "writing message to send-queue\n"); + LOGP(DLLAPD, LOGL_INFO, + "writing message to send-queue: l3len: %d\n", msgb_l3len(msg)); /* Write data into the send queue */ msgb_enqueue(&dl->send_queue, msg); |