aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorPhilipp Maier <pmaier@sysmocom.de>2017-06-13 16:59:42 +0200
committerHarald Welte <laforge@gnumonks.org>2017-06-28 13:21:51 +0000
commitae7ece10640c042072eb1efb257a1cf6511edc22 (patch)
tree146f3b083a62e112308e0594a141eedd268d132e /src
parent4962ed1811b26e1b01fbfd445a8e8fee97a398a0 (diff)
octphy: improve log output
Printing the RX payload size is strictly informative, so the loglevel LOGL_ERROR is wrong. This commit changes it to LOGL_DEBUG (Patch by Octasic Inc.) Change-Id: I712cdd79cbba93f457705d38871bd8d4b7f4e897
Diffstat (limited to 'src')
-rw-r--r--src/osmo-bts-octphy/l1_tch.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/osmo-bts-octphy/l1_tch.c b/src/osmo-bts-octphy/l1_tch.c
index 7393e739..5693313b 100644
--- a/src/osmo-bts-octphy/l1_tch.c
+++ b/src/osmo-bts-octphy/l1_tch.c
@@ -194,7 +194,7 @@ int l1if_tch_rx(struct gsm_bts_trx *trx, uint8_t chan_nr,
&trx->ts[L1SAP_CHAN2TS(chan_nr)].lchan[l1sap_chan2ss(chan_nr)];
if (data_ind->Data.ulDataLength < 1) {
- LOGP(DL1C, LOGL_ERROR, "chan_nr %d Rx Payload size 0\n",
+ LOGP(DL1C, LOGL_DEBUG, "chan_nr %d Rx Payload size 0\n",
chan_nr);
return -EINVAL;
}