aboutsummaryrefslogtreecommitdiffstats
path: root/src/common
diff options
context:
space:
mode:
Diffstat (limited to 'src/common')
-rw-r--r--src/common/debug.c1
-rw-r--r--src/common/debug.h21
2 files changed, 12 insertions, 10 deletions
diff --git a/src/common/debug.c b/src/common/debug.c
index b3df3cb..512596a 100644
--- a/src/common/debug.c
+++ b/src/common/debug.c
@@ -49,6 +49,7 @@ struct debug_cat {
{ "cnetz", "\033[1;34m" },
{ "nmt", "\033[1;34m" },
{ "amps", "\033[1;34m" },
+ { "r2000", "\033[1;34m" },
{ "frame", "\033[0;36m" },
{ "call", "\033[1;37m" },
{ "mncc", "\033[1;32m" },
diff --git a/src/common/debug.h b/src/common/debug.h
index b412df2..bb72c62 100644
--- a/src/common/debug.h
+++ b/src/common/debug.h
@@ -12,16 +12,17 @@
#define DCNETZ 5
#define DNMT 6
#define DAMPS 7
-#define DFRAME 8
-#define DCALL 9
-#define DMNCC 10
-#define DDB 11
-#define DTRANS 12
-#define DDMS 13
-#define DSMS 14
-#define DSDR 15
-#define DUHD 16
-#define DSOAPY 17
+#define DR2000 8
+#define DFRAME 9
+#define DCALL 10
+#define DMNCC 11
+#define DDB 12
+#define DTRANS 13
+#define DDMS 14
+#define DSMS 15
+#define DSDR 16
+#define DUHD 17
+#define DSOAPY 18
#define PDEBUG(cat, level, fmt, arg...) _printdebug(__FILE__, __FUNCTION__, __LINE__, cat, level, -1, fmt, ## arg)
#define PDEBUG_CHAN(cat, level, fmt, arg...) _printdebug(__FILE__, __FUNCTION__, __LINE__, cat, level, CHAN, fmt, ## arg)