diff options
author | Gerald Carter <jerry@samba.org> | 2006-04-19 14:16:38 +0000 |
---|---|---|
committer | Gerald Carter <jerry@samba.org> | 2006-04-19 14:16:38 +0000 |
commit | 3269caf5f189e31e8ce43dd8c96c50cb1577a5f0 (patch) | |
tree | 97766343da5c19ebc174ff90c5a26fdfb511a8c1 /source/include/debug.h | |
parent | 160f2a3ea700c763b2e0d7753f393e677c5b8f54 (diff) | |
parent | 1478912775330638b9dc6e7129d966168264db1a (diff) | |
download | samba-3269caf5f189e31e8ce43dd8c96c50cb1577a5f0.tar.gz samba-3269caf5f189e31e8ce43dd8c96c50cb1577a5f0.tar.xz samba-3269caf5f189e31e8ce43dd8c96c50cb1577a5f0.zip |
r15135: working on 3.0.23pre1; sync to SAMBA_3_0 r15132
Diffstat (limited to 'source/include/debug.h')
-rw-r--r-- | source/include/debug.h | 5 |
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 |