pespin has uploaded this change for review.
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(-)
git pull ssh://gerrit.osmocom.org:29418/osmo-bts refs/changes/30/29030/1
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)
To view, visit change 29030. To unsubscribe, or for help writing mail filters, visit settings.