pespin has submitted this change. ( https://gerrit.osmocom.org/c/osmo-bts/+/29030 )
Change subject: logging: Move category descriptions to be in order with enum ......................................................................
logging: Move category descriptions to be in order with enum
Change-Id: I3a1922fcd695e08ca42ece8cf0a1804d1a00f450 --- M src/common/logging.c 1 file changed, 11 insertions(+), 11 deletions(-)
Approvals: Jenkins Builder: Verified fixeria: Looks good to me, approved laforge: Looks good to me, approved
diff --git a/src/common/logging.c b/src/common/logging.c index 9c458e8..c79a58b 100644 --- a/src/common/logging.c +++ b/src/common/logging.c @@ -84,17 +84,6 @@ .loglevel = LOGL_NOTICE, .enabled = 1, }, - [DABIS] = { - .name = "DABIS", - .description = "A-bis Intput Subsystem", - .enabled = 1, .loglevel = LOGL_NOTICE, - }, - [DRTP] = { - .name = "DRTP", - .description = "Realtime Transfer Protocol", - .loglevel = LOGL_NOTICE, - .enabled = 1, - }, [DPCU] = { .name = "DPCU", .description = "PCU interface", @@ -119,6 +108,17 @@ .color = "\033[0;94m", .enabled = 1, .loglevel = LOGL_NOTICE, }, + [DABIS] = { + .name = "DABIS", + .description = "A-bis Intput Subsystem", + .enabled = 1, .loglevel = LOGL_NOTICE, + }, + [DRTP] = { + .name = "DRTP", + .description = "Realtime Transfer Protocol", + .loglevel = LOGL_NOTICE, + .enabled = 1, + }, };
static int osmo_bts_filter_fn(const struct log_context *ctx, struct log_target *tgt)