aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNeels Hofmeyr <neels@hofmeyr.de>2018-12-12 04:05:31 +0100
committerNeels Hofmeyr <nhofmeyr@sysmocom.de>2018-12-17 13:50:49 +0000
commit88063dd3684e79f508cf89086977426f4c98f443 (patch)
tree1d6e0c31e91a1ed1128b1ec3626f103fc7a2641d
parentb099a7f8ad8b5552ca602d0eb91c0e006e7ebc67 (diff)
log: by default start with all categories on LOGL_NOTICE
They were on DEBUG during early development stages, and it's high time that I drop those back to NOTICE. Change-Id: I3b46e9107a7a1d81a44d2a2eb855c10960a1ab6b
-rw-r--r--src/osmo-msc/msc_main.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/osmo-msc/msc_main.c b/src/osmo-msc/msc_main.c
index ce6ae380f..4dce2b8f4 100644
--- a/src/osmo-msc/msc_main.c
+++ b/src/osmo-msc/msc_main.c
@@ -469,22 +469,22 @@ static const struct log_info_cat msc_default_categories[] = {
[DSMPP] = {
.name = "DSMPP",
.description = "SMPP interface for external SMS apps",
- .enabled = 1, .loglevel = LOGL_DEBUG,
+ .enabled = 1, .loglevel = LOGL_NOTICE,
},
[DRANAP] = {
.name = "DRANAP",
.description = "Radio Access Network Application Part Protocol",
- .enabled = 1, .loglevel = LOGL_DEBUG,
+ .enabled = 1, .loglevel = LOGL_NOTICE,
},
[DVLR] = {
.name = "DVLR",
.description = "Visitor Location Register",
- .enabled = 1, .loglevel = LOGL_DEBUG,
+ .enabled = 1, .loglevel = LOGL_NOTICE,
},
[DIUCS] = {
.name = "DIUCS",
.description = "Iu-CS Protocol",
- .enabled = 1, .loglevel = LOGL_DEBUG,
+ .enabled = 1, .loglevel = LOGL_NOTICE,
},
[DBSSAP] = {
.name = "DBSSAP",