aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHarald Welte (local) <laflocal@hanuman.gnumonks.org>2009-12-28 23:22:43 +0100
committerHarald Welte <laforge@netfilter.org>2010-01-03 11:02:54 +0100
commit0b11414f38e53317d0d3fc4eb5cf7d85c356b6b7 (patch)
treed9e6ee99a8b2a940282e660f2e56a8faad1e2f04
parent4719307f502a8746a04a78987f65d787b281bffc (diff)
print full lchan name when recycling it
-rw-r--r--openbsc/src/chan_alloc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/openbsc/src/chan_alloc.c b/openbsc/src/chan_alloc.c
index ab26fcaf2..2e885241c 100644
--- a/openbsc/src/chan_alloc.c
+++ b/openbsc/src/chan_alloc.c
@@ -322,7 +322,7 @@ int lchan_auto_release(struct gsm_lchan *lchan)
LOGP(DRLL, LOGL_ERROR, "Channel count is negative: %d\n",
lchan->use_count);
- DEBUGP(DRLL, "Recycling the channel with: %d (%x)\n", lchan->nr, lchan->nr);
+ DEBUGP(DRLL, "%s Recycling Channel\n", gsm_lchan_name(lchan));
rsl_release_request(lchan, 0);
return 1;
}