aboutsummaryrefslogtreecommitdiffstats
path: root/lib/debug.c
diff options
context:
space:
mode:
Diffstat (limited to 'lib/debug.c')
-rw-r--r--lib/debug.c34
1 files changed, 34 insertions, 0 deletions
diff --git a/lib/debug.c b/lib/debug.c
new file mode 100644
index 0000000..b3850f9
--- /dev/null
+++ b/lib/debug.c
@@ -0,0 +1,34 @@
+/*
+ * (C) 2014 by Holger Hans Peter Freyther
+ */
+#include "syserr.h"
+
+#include <osmocom/core/utils.h>
+
+static const struct log_info_cat default_categories[] = {
+ [DIP] = {
+ .name = "DIP",
+ .description = "IP Pool and other groups",
+ .enabled = 1, .loglevel = LOGL_NOTICE,
+ },
+ [DTUN] = {
+ .name = "DTUN",
+ .description = "Tunnel interface",
+ .enabled = 1, .loglevel = LOGL_NOTICE,
+ },
+ [DGGSN] = {
+ .name = "DGGSN",
+ .description = "GGSN",
+ .enabled = 1, .loglevel = LOGL_NOTICE,
+ },
+ [DSGSN] = {
+ .name = "DSGSN",
+ .description = "SGSN Emulator",
+ .enabled = 1, .loglevel = LOGL_NOTICE,
+ },
+};
+
+const struct log_info log_info = {
+ .cat = default_categories,
+ .num_cat = ARRAY_SIZE(default_categories),
+};