aboutsummaryrefslogtreecommitdiffstats
path: root/openbsc/src/debug.c
diff options
context:
space:
mode:
authorHarald Welte <laforge@gnumonks.org>2009-06-27 02:53:10 +0200
committerHarald Welte <laforge@gnumonks.org>2009-06-27 03:09:38 +0200
commit10d0e67e2cb94ae9af8622992b1e5f2bc8dd4516 (patch)
tree8f6bf3aca9ecc5f81d4cddb37d2a3ec03e67a1e0 /openbsc/src/debug.c
parent6bfda782b9cc30b5c10ad0290949c6d25d4c83cf (diff)
add new DMEAS debug category for measurement reporting
disable it by default
Diffstat (limited to 'openbsc/src/debug.c')
-rw-r--r--openbsc/src/debug.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/openbsc/src/debug.c b/openbsc/src/debug.c
index aeb993097..6483710af 100644
--- a/openbsc/src/debug.c
+++ b/openbsc/src/debug.c
@@ -28,7 +28,7 @@
#include <openbsc/debug.h>
-unsigned int debug_mask = 0xffffffff & ~(DMI|DMIB);
+unsigned int debug_mask = 0xffffffff & ~(DMI|DMIB|DMEAS);
struct debug_info {
const char *name;
@@ -56,6 +56,7 @@ static const struct debug_info debug_info[] = {
DEBUG_CATEGORY(DMI, "DMI", "", "")
DEBUG_CATEGORY(DMIB, "DMIB", "", "")
DEBUG_CATEGORY(DMUX, "DMUX", "", "")
+ DEBUG_CATEGORY(DMEAS, "DMEAS", "", "")
};
static int use_color = 1;