aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorNeels Hofmeyr <neels@hofmeyr.de>2019-05-09 15:24:49 +0200
committerHarald Welte <laforge@gnumonks.org>2019-05-12 10:32:42 +0000
commit979b057ad7e477718d4143b7c5a18dbe542702d6 (patch)
treec3519f3573cbc82f1af98b99199afee40782de90 /include
parent6a689b2b5b9f99ff402487bc14e231e5adbc2bbe (diff)
add DSS logging category
Diffstat (limited to 'include')
-rw-r--r--include/osmocom/msc/debug.h1
-rw-r--r--include/osmocom/msc/transaction.h5
2 files changed, 2 insertions, 4 deletions
diff --git a/include/osmocom/msc/debug.h b/include/osmocom/msc/debug.h
index 28ba4825b..3347e20d4 100644
--- a/include/osmocom/msc/debug.h
+++ b/include/osmocom/msc/debug.h
@@ -22,5 +22,6 @@ enum {
DIUCS,
DBSSAP,
DSGS,
+ DSS,
Debug_LastEntry,
};
diff --git a/include/osmocom/msc/transaction.h b/include/osmocom/msc/transaction.h
index 6b82390e5..c63ef5bc7 100644
--- a/include/osmocom/msc/transaction.h
+++ b/include/osmocom/msc/transaction.h
@@ -168,10 +168,7 @@ static inline int trans_log_subsys(const struct gsm_trans *trans)
case TRANS_SMS:
return DLSMS;
case TRANS_USSD:
- /* FIXME: traditionally (before LOG_TRANS() was added in I2e60964d7a3c06d051debd1c707051a0eb3101ba /
- * ff7074a0c7b62025473d8f1a950905ac2cb2f31c), all USSD logging happened on DMM. Instead, it probably
- * deserves its own logging subsystem. */
- return DMM;
+ return DSS;
default:
break;
}