diff options
author | Simo Sorce <idra@samba.org> | 2002-05-18 15:09:21 +0000 |
---|---|---|
committer | Simo Sorce <idra@samba.org> | 2002-05-18 15:09:21 +0000 |
commit | 2a02a76913a91c9882868b73c72ba2e8d2be764d (patch) | |
tree | 4f1f0bc22e790381cf655ea6ce592660db1f2d52 /source3/passdb/passgrp.c | |
parent | f9d2db36f36abc39a9a905a69b0f2e0182d0caca (diff) | |
download | samba-2a02a76913a91c9882868b73c72ba2e8d2be764d.tar.gz samba-2a02a76913a91c9882868b73c72ba2e8d2be764d.tar.bz2 samba-2a02a76913a91c9882868b73c72ba2e8d2be764d.zip |
so here it is the code to introduce seriously debugggging classes.
this is a first step only passdb stuff has beein "classized".
- so what can you do?
set debug level to: 1 poasdb:10
that will make all the code run at debug level 1 except the code in
passdb/* files that will run at level 10
TODO: fix the man page
- also smbcontrol has this nice feature so smbcontrol smbd debug 3 passdb:5
will set every smbd to have a default log level of 3 while passdb stuff
will be at level 5
and so no..
minor cosmetic fix to pdbedit is there too
(This used to be commit be5c3b3f5781ddc002ffcc98df04ab024dcef4ca)
Diffstat (limited to 'source3/passdb/passgrp.c')
-rw-r--r-- | source3/passdb/passgrp.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/source3/passdb/passgrp.c b/source3/passdb/passgrp.c index d7ed965648..f73591793f 100644 --- a/source3/passdb/passgrp.c +++ b/source3/passdb/passgrp.c @@ -21,6 +21,9 @@ #include "includes.h" +#undef DBGC_CLASS +#define DBGC_CLASS DBGC_PASSDB + /* * NOTE. All these functions are abstracted into a structure * that points to the correct function for the selected database. JRA. |