log: hnbgw: add hnbap UE context allocation info log

Change-Id: Iac0ca948d6e699d984c6e424afe7106dcaf2ab1e
This commit is contained in:
Neels Hofmeyr 2016-09-22 19:37:29 +02:00 committed by Harald Welte
parent 12181a937f
commit 0476e2854e
1 changed files with 3 additions and 0 deletions

View File

@ -161,6 +161,9 @@ struct ue_context *ue_context_alloc(struct hnb_context *hnb, const char *imsi,
ue->context_id = get_next_ue_ctx_id(hnb->gw);
llist_add_tail(&ue->list, &hnb->gw->ue_list);
LOGP(DHNBAP, LOGL_INFO, "created UE context: id 0x%x, imsi %s, tmsi 0x%x\n",
ue->context_id, imsi? imsi : "-", tmsi);
return ue;
}