summaryrefslogtreecommitdiff
path: root/source/include/debug.h
diff options
context:
space:
mode:
Diffstat (limited to 'source/include/debug.h')
-rw-r--r--source/include/debug.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/source/include/debug.h b/source/include/debug.h
index b6fb50a9acb..ae9fbeba92f 100644
--- a/source/include/debug.h
+++ b/source/include/debug.h
@@ -102,6 +102,7 @@ extern int DEBUGLEVEL;
#define DBGC_ACLS 15
#define DBGC_LOCKING 16
#define DBGC_MSDFS 17
+#define DBGC_DMAPI 18
/* So you can define DBGC_CLASS before including debug.h */
#ifndef DBGC_CLASS
@@ -207,4 +208,8 @@ extern BOOL *DEBUGLEVEL_CLASS_ISSET;
DEBUGLEVEL_CLASS[ DBGC_ALL ] >= (level)) ) \
&& (dbgtext body) )
+/* Print a separator to the debug log. */
+#define DEBUGSEP(level)\
+ DEBUG((level),("===============================================================\n"))
+
#endif