laforge has submitted this change. ( https://gerrit.osmocom.org/c/osmo-bts/+/31913 )
Change subject: rsl: reduce logging verbosity on some messages ......................................................................
rsl: reduce logging verbosity on some messages
These two messages indicate that no ACK/NACK message is going to be sent to the BSC because activation/deactivation was requested by the PCU. This is absolutely normal and requires no attention from the user/operator, so better use LOGL_INFO.
Change-Id: I6eaf3a6c07fb30b31c045729c935c8ad6735e5c8 --- M src/common/rsl.c 1 file changed, 16 insertions(+), 2 deletions(-)
Approvals: Jenkins Builder: Verified pespin: Looks good to me, but someone else must approve laforge: Looks good to me, approved
diff --git a/src/common/rsl.c b/src/common/rsl.c index c7061b2..c537998 100644 --- a/src/common/rsl.c +++ b/src/common/rsl.c @@ -1295,7 +1295,7 @@ }
if (!send_rel_ack) { - LOGPLCHAN(lchan, DRSL, LOGL_NOTICE, "not sending REL ACK\n"); + LOGPLCHAN(lchan, DRSL, LOGL_INFO, "not sending REL ACK\n"); return 0; }
@@ -1386,7 +1386,7 @@ int rsl_tx_chan_act_acknack(struct gsm_lchan *lchan, uint8_t cause) { if (lchan->rel_act_kind != LCHAN_REL_ACT_RSL) { - LOGPLCHAN(lchan, DRSL, LOGL_NOTICE, "not sending CHAN ACT %s\n", + LOGPLCHAN(lchan, DRSL, LOGL_INFO, "not sending CHAN ACT %s\n", cause ? "NACK" : "ACK"); return 0; }