From 7997bf4bed15fa8c6807820b1a9b379a2ae0c61e Mon Sep 17 00:00:00 2001 From: Neels Hofmeyr Date: Tue, 13 Feb 2018 17:16:44 +0100 Subject: libcommon: eliminate debug.c Provide concise log categories for each main scope. Move the complete log categories 1:1 to osmo_bsc_main.c. In bsc_nat.c, omit obviously unused log categories. In tests, omit almost all log categories, except for those explicitly tested as the expected output. Note: should any logging occur for a log category that is omitted by accident, such will end up being logged as DLGLOBAL, so it will show up and we can fix it, and it will not get lost silently. Change-Id: Ib524e49ec211662e0dfde8161495a72aa8ad76cf --- src/utils/bs11_config.c | 14 ++++++++++++++ 1 file changed, 14 insertions(+) (limited to 'src/utils') diff --git a/src/utils/bs11_config.c b/src/utils/bs11_config.c index c72a23a53..2122abe6a 100644 --- a/src/utils/bs11_config.c +++ b/src/utils/bs11_config.c @@ -884,6 +884,20 @@ struct e1inp_line_ops bs11cfg_e1inp_line_ops = { .sign_link = bs11cfg_sign_link, }; +static const struct log_info_cat bs11_categories[] = { + [DNM] = { + .name = "DNM", + .description = "A-bis Network Management / O&M (NM/OML)", + .color = "\033[1;36m", + .enabled = 1, .loglevel = LOGL_INFO, + }, +}; + +const struct log_info log_info = { + .cat = bs11_categories, + .num_cat = ARRAY_SIZE(bs11_categories), +}; + extern int bts_model_bs11_init(void); int main(int argc, char **argv) { -- cgit v1.2.3