laforge has submitted this change. ( https://gerrit.osmocom.org/c/osmo-msc/+/33508 )
Change subject: ASCI: Add log categories for GCC/BCC (call control) ......................................................................
ASCI: Add log categories for GCC/BCC (call control)
Change-Id: I4c5d002b5bb1c2ebf2fac777ab784559fc265e7c Related: OS#4854 --- M include/osmocom/msc/debug.h M src/osmo-msc/msc_main.c 2 files changed, 24 insertions(+), 0 deletions(-)
Approvals: laforge: Looks good to me, approved pespin: Looks good to me, but someone else must approve Jenkins Builder: Verified
diff --git a/include/osmocom/msc/debug.h b/include/osmocom/msc/debug.h index 0d08ceb..12abfa1 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 02a85f5..e9064ae 100644 --- a/src/osmo-msc/msc_main.c +++ b/src/osmo-msc/msc_main.c @@ -439,6 +439,18 @@ .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)",