aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorVadim Yanitskiy <axilirator@gmail.com>2020-02-29 14:28:47 +0700
committerVadim Yanitskiy <axilirator@gmail.com>2020-02-29 14:29:27 +0700
commit1f932689fcbe16cfc667732f399ebba776848a87 (patch)
treebe3f174631d41f5cc9634010dfb36bf72587e015
parent7364ef15d90b8a06815049d8b686a3df3cdb1356 (diff)
common/sysinfo: reduce criticality of a logging message
During the process of bootstrapping, it may happen that System Information Type 3 is not yet received from the BSC, while the BTS already needs to transmit a block on AGCH or PCH. Since the RSL link is established later than the OML link, it's kind of expected, so we should not log it as error. Change-Id: I41aa3dbe375cf42c39032bafa80dba94d6219d35
-rw-r--r--src/common/sysinfo.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/common/sysinfo.c b/src/common/sysinfo.c
index c41f9d6e..f5bc3c88 100644
--- a/src/common/sysinfo.c
+++ b/src/common/sysinfo.c
@@ -156,7 +156,7 @@ uint8_t num_agch(struct gsm_bts_trx *trx, const char * arg)
si3 = GSM_BTS_SI(b, SYSINFO_TYPE_3);
return si3->control_channel_desc.bs_ag_blks_res;
}
- LOGP(DL1P, LOGL_ERROR, "%s: Unable to determine actual BS_AG_BLKS_RES "
+ LOGP(DL1P, LOGL_NOTICE, "%s: Unable to determine actual BS_AG_BLKS_RES "
"value as SI3 is not available yet, fallback to 1\n", arg);
return 1;
}