summaryrefslogtreecommitdiffstats
path: root/src/logging.c
diff options
context:
space:
mode:
authorMax <msuraev@sysmocom.de>2019-02-14 19:12:03 +0100
committerMax <msuraev@sysmocom.de>2019-02-14 19:19:57 +0100
commit450f5ac9105ffeccbebc52d9d61bbb1b0520cfad (patch)
tree694c07848184d06db6d7859d28e3ca68d2657b16 /src/logging.c
parent6b4895ff53b0fe8880dadf7c8d759a63938bbb3e (diff)
Enable remote SIM protocol log level
It's defined in logging.h for quite some time but is not actually enabled alongside with other internal logging categories. Change-Id: I0e7a2add6293a072752900608c8ba34cc3850f31
Diffstat (limited to 'src/logging.c')
-rw-r--r--src/logging.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/logging.c b/src/logging.c
index 2bb53ae6..09021e42 100644
--- a/src/logging.c
+++ b/src/logging.c
@@ -169,6 +169,11 @@ static const struct log_info_cat internal_cat[OSMO_NUM_DLIB] = {
.description = "libosmo-netif Jitter Buffer",
.enabled = 1, .loglevel = LOGL_NOTICE,
},
+ [INT2IDX(DLRSPRO)] = {
+ .name = "DLRSPRO",
+ .description = "Remote SIM protocol",
+ .enabled = 1, .loglevel = LOGL_NOTICE,
+ },
};
void assert_loginfo(const char *src)