From 1a5eb18e2641c28476e392630fc4d4cca535e3d2 Mon Sep 17 00:00:00 2001 From: arehbein Date: Sat, 25 Mar 2023 22:03:56 +0100 Subject: [PATCH] PCU interface: Log version when starting listener Change-Id: Ic831ba20917293d8fa9b00ad276b31ad2ff77a64 --- src/osmobts_sock.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/osmobts_sock.c b/src/osmobts_sock.c index 6d46a841..bf1fbb4d 100644 --- a/src/osmobts_sock.c +++ b/src/osmobts_sock.c @@ -216,7 +216,7 @@ static int pcu_sock_cb(struct osmo_fd *bfd, unsigned int flags) int pcu_l1if_open(void) { int rc; - LOGP(DL1IF, LOGL_INFO, "Opening OsmoPCU L1 interface to OsmoBTS\n"); + LOGP(DL1IF, LOGL_INFO, "Opening OsmoPCU L1 interface v%u to OsmoBTS\n", PCU_IF_VERSION); memset(&pcu_sock_state, 0x00, sizeof(pcu_sock_state)); INIT_LLIST_HEAD(&pcu_sock_state.upqueue);