aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNeels Hofmeyr <neels@hofmeyr.de>2016-06-16 16:56:38 +0200
committerHarald Welte <laforge@gnumonks.org>2016-06-17 15:32:03 +0000
commit36860051804e195c5a4c1ce9d4590b927c2a0b17 (patch)
tree721e32f741f1133c5403cf99a39ebb5fac470642
parentea40bd60e709c18ac1c6882bc15bd538a3ada547 (diff)
add missing DSUM entry to bts_log_info_cat
This allows setting the 'sum' log level to debug in osmo-bts.cfg. Change-Id: I1fe1a483f07f0384815f01877f86ffc192052f72
-rw-r--r--src/common/logging.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/common/logging.c b/src/common/logging.c
index 5ce9b8b6..29116921 100644
--- a/src/common/logging.c
+++ b/src/common/logging.c
@@ -136,6 +136,12 @@ static struct log_info_cat bts_log_info_cat[] = {
.enabled = 1, .loglevel = LOGL_DEBUG,
},
#endif
+ [DSUM] = {
+ .name = "DSUM",
+ .description = "DSUM",
+ .loglevel = LOGL_NOTICE,
+ .enabled = 1,
+ },
};
const struct log_info bts_log_info = {