aboutsummaryrefslogtreecommitdiffstats
path: root/src/gprs_rlcmac_meas.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/gprs_rlcmac_meas.cpp')
-rw-r--r--src/gprs_rlcmac_meas.cpp5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/gprs_rlcmac_meas.cpp b/src/gprs_rlcmac_meas.cpp
index f4a7e479..e4df559e 100644
--- a/src/gprs_rlcmac_meas.cpp
+++ b/src/gprs_rlcmac_meas.cpp
@@ -26,6 +26,7 @@ extern "C" {
#include <pcu_l1_if.h>
#include <tbf.h>
#include <tbf_dl.h>
+#include <gprs_ms.h>
#include <string.h>
#include <errno.h>
@@ -105,8 +106,8 @@ int gprs_rlcmac_rssi_rep(struct gprs_rlcmac_tbf *tbf)
if (!tbf->meas.rssi_num)
return -EINVAL;
- LOGP(DRLCMACMEAS, LOGL_INFO, "UL RSSI of TLLI=0x%08x: %d dBm\n",
- tbf->tlli(), tbf->meas.rssi_sum / tbf->meas.rssi_num);
+ LOGPMS(tbf->ms(), DRLCMACMEAS, LOGL_INFO, "UL RSSI: %d dBm\n",
+ tbf->meas.rssi_sum / tbf->meas.rssi_num);
return 0;
}