aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/gbproxy/gb_proxy_main.c7
-rw-r--r--src/sgsn/sgsn_main.c7
2 files changed, 2 insertions, 12 deletions
diff --git a/src/gbproxy/gb_proxy_main.c b/src/gbproxy/gb_proxy_main.c
index c7ff78cf9..a9c132e86 100644
--- a/src/gbproxy/gb_proxy_main.c
+++ b/src/gbproxy/gb_proxy_main.c
@@ -209,11 +209,6 @@ static struct log_info_cat gprs_categories[] = {
.description = "GPRS Network Service (NS)",
.enabled = 1, .loglevel = LOGL_INFO,
},
- [DBSSGP] = {
- .name = "DBSSGP",
- .description = "GPRS BSS Gateway Protocol (BSSGP)",
- .enabled = 1, .loglevel = LOGL_DEBUG,
- },
};
static const struct log_info gprs_log_info = {
@@ -288,7 +283,7 @@ int main(int argc, char **argv)
}
gprs_ns2_vty_init(gbcfg->nsi, NULL);
- bssgp_set_log_ss(DBSSGP);
+ logging_vty_add_deprecated_subsys(tall_sgsn_ctx, "bssgp");
gprs_ns2_dynamic_create_nse(gbcfg->nsi, true);
bssgp_set_bssgp_callback(gbprox_bssgp_send_cb, gbcfg);
diff --git a/src/sgsn/sgsn_main.c b/src/sgsn/sgsn_main.c
index e51336bf0..0277f6f04 100644
--- a/src/sgsn/sgsn_main.c
+++ b/src/sgsn/sgsn_main.c
@@ -312,11 +312,6 @@ static struct log_info_cat gprs_categories[] = {
.description = "GPRS Network Service (NS)",
.enabled = 1, .loglevel = LOGL_NOTICE,
},
- [DBSSGP] = {
- .name = "DBSSGP",
- .description = "GPRS BSS Gateway Protocol (BSSGP)",
- .enabled = 1, .loglevel = LOGL_NOTICE,
- },
[DLLC] = {
.name = "DLLC",
.description = "GPRS Logical Link Control Protocol (LLC)",
@@ -424,7 +419,7 @@ int main(int argc, char **argv)
rate_ctr_init(tall_sgsn_ctx);
gprs_ns_set_log_ss(DNS);
- bssgp_set_log_ss(DBSSGP);
+ logging_vty_add_deprecated_subsys(tall_sgsn_ctx, "bssgp");
sgsn_nsi = gprs_ns_instantiate(&sgsn_ns_cb, tall_sgsn_ctx);
if (!sgsn_nsi) {