summaryrefslogtreecommitdiffstats
path: root/src/host/trxcon/logging.h
diff options
context:
space:
mode:
authorVadim Yanitskiy <axilirator@gmail.com>2017-08-04 16:31:04 +0600
committerVadim Yanitskiy <axilirator@gmail.com>2017-11-19 17:35:07 +0700
commitf5bbe5ebfec10efe04b45b60f6437b99e1a31e15 (patch)
tree632f3a2d7be9e7531f1e38307fe0c17b309cda45 /src/host/trxcon/logging.h
parent2e062039b662b02675d1795e14564021cde89c6e (diff)
host/trxcon: separate logging of L1 Control and L1 Data
L1 Data is quite verbose, while Control is typically limited. And if you would need to debug some Control message handling, the Data messages wont overflow your terminal anymore. This change introduces a new logging category named 'DL1D'. Change-Id: Id830c8bf913f7a8ddc87c47f70a337ee4623abd8
Diffstat (limited to 'src/host/trxcon/logging.h')
-rw-r--r--src/host/trxcon/logging.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/host/trxcon/logging.h b/src/host/trxcon/logging.h
index 52afd4ba..22f32517 100644
--- a/src/host/trxcon/logging.h
+++ b/src/host/trxcon/logging.h
@@ -2,11 +2,12 @@
#include <osmocom/core/logging.h>
-#define DEBUG_DEFAULT "DAPP:DL1C:DTRX:DSCH"
+#define DEBUG_DEFAULT "DAPP:DL1C:DL1D:DTRX:DSCH"
enum {
DAPP,
DL1C,
+ DL1D,
DTRX,
DSCH,
};