aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndreas Eversberg <jolly@eversberg.eu>2023-05-04 20:22:24 +0200
committerlaforge <laforge@osmocom.org>2023-07-09 07:41:33 +0000
commit0452cf94675f5a614653a43a0a1480d6d33df8ad (patch)
tree3152b1d5bdf16ba20974416c153358a6feb14516
parentb9162c7cc68de24deced37d1637ec2024ef5ccc9 (diff)
ASCI: Add log category for VGCS/VBS call and channel FSM
-rw-r--r--include/osmocom/msc/debug.h1
-rw-r--r--src/osmo-msc/msc_main.c5
2 files changed, 6 insertions, 0 deletions
diff --git a/include/osmocom/msc/debug.h b/include/osmocom/msc/debug.h
index 12abfa179..9925a3cb0 100644
--- a/include/osmocom/msc/debug.h
+++ b/include/osmocom/msc/debug.h
@@ -26,5 +26,6 @@ enum {
DBSSAP,
DSGS,
DSS,
+ DASCI,
Debug_LastEntry,
};
diff --git a/src/osmo-msc/msc_main.c b/src/osmo-msc/msc_main.c
index e9064ae13..0c2525789 100644
--- a/src/osmo-msc/msc_main.c
+++ b/src/osmo-msc/msc_main.c
@@ -541,6 +541,11 @@ static const struct log_info_cat msc_default_categories[] = {
.description = "Supplementary Services",
.enabled = 1, .loglevel = LOGL_NOTICE,
},
+ [DASCI] = {
+ .name = "DASCI",
+ .description = "Advanced Speech Call Items",
+ .enabled = 1, .loglevel = LOGL_NOTICE,
+ },
};
static int filter_fn(const struct log_context *ctx, struct log_target *tar)