aboutsummaryrefslogtreecommitdiffstats
path: root/src/osmo-bts-trx/trx_if.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/osmo-bts-trx/trx_if.c')
-rw-r--r--src/osmo-bts-trx/trx_if.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/osmo-bts-trx/trx_if.c b/src/osmo-bts-trx/trx_if.c
index e798ca53..bc80150b 100644
--- a/src/osmo-bts-trx/trx_if.c
+++ b/src/osmo-bts-trx/trx_if.c
@@ -175,7 +175,8 @@ static void trx_ctrl_timer_cb(void *data)
{
struct trx_l1h *l1h = data;
- LOGP(DTRX, LOGL_NOTICE, "No response from transceiver\n");
+ LOGP(DTRX, LOGL_NOTICE, "No response from transceiver for trx=%d\n",
+ l1h->trx->nr);
trx_ctrl_send(l1h);
}
@@ -358,8 +359,8 @@ static int trx_ctrl_read_cb(struct osmo_fd *ofd, unsigned int what)
sscanf(p + 1, "%d", &resp);
if (resp) {
LOGP(DTRX, (tcm->critical) ? LOGL_FATAL : LOGL_NOTICE,
- "transceiver rejected TRX command with "
- "response: '%s'\n", buf);
+ "transceiver (trx=%d) rejected TRX command "
+ "with response: '%s'\n", l1h->trx->nr, buf);
rsp_error:
if (tcm->critical) {
bts_shutdown(l1h->trx->bts, "SIGINT");