aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndreas Eversberg <jolly@eversberg.eu>2023-04-23 12:19:18 +0200
committerlaforge <laforge@osmocom.org>2023-07-09 07:41:33 +0000
commitb9162c7cc68de24deced37d1637ec2024ef5ccc9 (patch)
tree19eb8b4eab90c06177ff7d691c7abae24eee4384
parent412cf92d3ca15670b317e08d43335c581c06d862 (diff)
ASCI: Add log categories for GCC/BCC (call control)
-rw-r--r--include/osmocom/msc/debug.h2
-rw-r--r--src/osmo-msc/msc_main.c12
2 files changed, 14 insertions, 0 deletions
diff --git a/include/osmocom/msc/debug.h b/include/osmocom/msc/debug.h
index 0d08ceb11..12abfa179 100644
--- a/include/osmocom/msc/debug.h
+++ b/include/osmocom/msc/debug.h
@@ -6,6 +6,8 @@
enum {
DRLL,
DCC,
+ DBCC,
+ DGCC,
DMM,
DRR,
DLCLS,
diff --git a/src/osmo-msc/msc_main.c b/src/osmo-msc/msc_main.c
index 02a85f50f..e9064ae13 100644
--- a/src/osmo-msc/msc_main.c
+++ b/src/osmo-msc/msc_main.c
@@ -439,6 +439,18 @@ static const struct log_info_cat msc_default_categories[] = {
.color = "\033[1;32m",
.enabled = 1, .loglevel = LOGL_NOTICE,
},
+ [DBCC] = {
+ .name = "DBCC",
+ .description = "Layer3 Broadcast Call Control (BCC)",
+ .color = "\033[1;32m",
+ .enabled = 1, .loglevel = LOGL_NOTICE,
+ },
+ [DGCC] = {
+ .name = "DGCC",
+ .description = "Layer3 Group Call Control (GCC)",
+ .color = "\033[1;32m",
+ .enabled = 1, .loglevel = LOGL_NOTICE,
+ },
[DMM] = {
.name = "DMM",
.description = "Layer3 Mobility Management (MM)",