aboutsummaryrefslogtreecommitdiffstats
path: root/src/common/logging.c
diff options
context:
space:
mode:
authorHarald Welte <laforge@gnumonks.org>2017-12-02 16:56:45 +0100
committerHarald Welte <laforge@gnumonks.org>2017-12-02 21:05:34 +0100
commitcbcd3c5034084a0b214d32942dfe64362c44c79b (patch)
tree4e397b63659ced808d7f542a8a73e71479128f2f /src/common/logging.c
parent62a6a2680f758730e9bd7ad333cf61c993ff0dd2 (diff)
scheduler_trx: L1P is for PH (data), L1M for MPH (control)
Almost all log statements in scheduler_trx.c were using the wrong logging subsystem. Let's fix this. Also, make it more obvious from the log subsystem help text Change-Id: I4312f8ab0414eb38db0d62f05c95ab961f500c14
Diffstat (limited to 'src/common/logging.c')
-rw-r--r--src/common/logging.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/common/logging.c b/src/common/logging.c
index 29116921..a4d30e6b 100644
--- a/src/common/logging.c
+++ b/src/common/logging.c
@@ -68,13 +68,13 @@ static struct log_info_cat bts_log_info_cat[] = {
},
[DL1C] = {
.name = "DL1C",
- .description = "Layer 1",
+ .description = "Layer 1 Control (MPH)",
.loglevel = LOGL_INFO,
.enabled = 1,
},
[DL1P] = {
.name = "DL1P",
- .description = "Layer 1 Primitives",
+ .description = "Layer 1 Primitives (PH)",
.loglevel = LOGL_INFO,
.enabled = 0,
},