aboutsummaryrefslogtreecommitdiffstats
path: root/openbsc/src/chan_alloc.c
diff options
context:
space:
mode:
authorHarald Welte (local) <laflocal@hanuman.gnumonks.org>2009-12-28 23:22:43 +0100
committerHarald Welte (local) <laflocal@hanuman.gnumonks.org>2009-12-28 23:22:43 +0100
commit9c647ff4055f50ade57ec98fe4133d9cd1378f73 (patch)
tree520ab151a112447e0cfdffa4abf64f882f6472e4 /openbsc/src/chan_alloc.c
parentb47d2bc8e5de49d01b90aa1e0d1db674159a9f8f (diff)
print full lchan name when recycling it26c3
Diffstat (limited to 'openbsc/src/chan_alloc.c')
-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 8141e4774..3aa30895b 100644
--- a/openbsc/src/chan_alloc.c
+++ b/openbsc/src/chan_alloc.c
@@ -323,7 +323,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;
}