aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHarald Welte <laforge@gnumonks.org>2009-12-25 23:02:50 +0100
committerHarald Welte <laforge@gnumonks.org>2009-12-25 23:02:50 +0100
commit07cd839abc96f49ea49c098f252c27865bf6e284 (patch)
treeec44f3a08fc96ae086bb66027cb6736f956f0b9f
parent734928ff36da6107c2cd6ac3c63dcef27658e2dd (diff)
[handover] print INFO message when doing handover
-rw-r--r--openbsc/src/handover_logic.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/openbsc/src/handover_logic.c b/openbsc/src/handover_logic.c
index 20eeb66ce..1bf048fed 100644
--- a/openbsc/src/handover_logic.c
+++ b/openbsc/src/handover_logic.c
@@ -217,6 +217,11 @@ static int ho_gsm48_ho_compl(struct gsm_lchan *new_lchan)
return -ENODEV;
}
+ LOGP(DHO, LOGL_INFO, "Subscriber %s HO from BTS %u->%u on ARFCN "
+ "%u->%u\n", subscr_name(ho->old_lchan->subscr),
+ ho->old_lchan->ts->trx->bts->nr, new_lchan->ts->trx->bts->nr,
+ ho->old_lchan->ts->trx->arfcn, new_lchan->ts->trx->arfcn);
+
counter_inc(net->stats.handover.completed);
bsc_del_timer(&ho->T3103);