From: Gary Lockyer Date: Mon, 23 Apr 2018 00:24:34 +0000 (+1200) Subject: debug: Add group logging classes X-Git-Tag: ldb-1.4.0~208 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=472dca29055e02b97684e1d174e688aba2e83b7d;p=thirdparty%2Fsamba.git debug: Add group logging classes Signed-off-by: Gary Lockyer Reviewed-by: Andrew Bartlett Autobuild-User(master): Andrew Bartlett Autobuild-Date(master): Wed May 16 07:02:20 CEST 2018 on sn-devel-144 --- diff --git a/lib/util/debug.c b/lib/util/debug.c index d7b641e4384..2dafd8e1d3a 100644 --- a/lib/util/debug.c +++ b/lib/util/debug.c @@ -549,6 +549,8 @@ static const char *default_classname_table[] = { [DBGC_DSDB_PWD_AUDIT_JSON] = "dsdb_password_json_audit", [DBGC_DSDB_TXN_AUDIT] = "dsdb_transaction_audit", [DBGC_DSDB_TXN_AUDIT_JSON] = "dsdb_transaction_json_audit", + [DBGC_DSDB_GROUP_AUDIT] = "dsdb_group_audit", + [DBGC_DSDB_GROUP_AUDIT_JSON] = "dsdb_group_json_audit", }; /* diff --git a/lib/util/debug.h b/lib/util/debug.h index 8d285cd7b0f..2895d157887 100644 --- a/lib/util/debug.h +++ b/lib/util/debug.h @@ -101,6 +101,8 @@ bool dbghdr( int level, const char *location, const char *func); #define DBGC_DSDB_PWD_AUDIT_JSON 33 #define DBGC_DSDB_TXN_AUDIT 34 #define DBGC_DSDB_TXN_AUDIT_JSON 35 +#define DBGC_DSDB_GROUP_AUDIT 36 +#define DBGC_DSDB_GROUP_AUDIT_JSON 37 /* So you can define DBGC_CLASS before including debug.h */ #ifndef DBGC_CLASS