aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPhilipp Maier <pmaier@sysmocom.de>2020-01-15 13:20:47 +0100
committerPhilipp Maier <pmaier@sysmocom.de>2020-01-15 13:23:01 +0100
commit40e3f1e3d714c3f545efd08a60fbfef7d51b5670 (patch)
tree97be7c15a27ababc340f51ed93182dbf408c8110
parent35d07b76987fadc4f90e314089f0c66606c5a3eb (diff)
bsc_main: use higher default loglevels.
The loglevels of DNM, DFILTER and DPCU are set to low, lets set them all to NOTICE Change-Id: I03a5426b341e9908ffc89240f97d6d3ea791b4a8 Related: OS#2577
-rw-r--r--src/osmo-bsc/osmo_bsc_main.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/osmo-bsc/osmo_bsc_main.c b/src/osmo-bsc/osmo_bsc_main.c
index 6b1427903..66310b37c 100644
--- a/src/osmo-bsc/osmo_bsc_main.c
+++ b/src/osmo-bsc/osmo_bsc_main.c
@@ -713,7 +713,7 @@ static const struct log_info_cat osmo_bsc_categories[] = {
.name = "DNM",
.description = "A-bis Network Management / O&M (NM/OML)",
.color = "\033[1;36m",
- .enabled = 1, .loglevel = LOGL_INFO,
+ .enabled = 1, .loglevel = LOGL_NOTICE,
},
[DPAG] = {
.name = "DPAG",
@@ -761,12 +761,12 @@ static const struct log_info_cat osmo_bsc_categories[] = {
[DFILTER] = {
.name = "DFILTER",
.description = "BSC/NAT IMSI based filtering",
- .enabled = 1, .loglevel = LOGL_DEBUG,
+ .enabled = 1, .loglevel = LOGL_NOTICE,
},
[DPCU] = {
.name = "DPCU",
.description = "PCU Interface",
- .enabled = 1, .loglevel = LOGL_DEBUG,
+ .enabled = 1, .loglevel = LOGL_NOTICE,
},
[DLCLS] = {
.name = "DLCLS",