further improve loglevel selection

This commit is contained in:
Pierangelo Masarati 2004-07-29 12:39:51 +00:00
parent f33b51832a
commit 7b4a51cc28
2 changed files with 13 additions and 1 deletions

View File

@ -573,7 +573,18 @@ entry parsing
.RE
The desired log level can be input as a single integer that combines
the (ORed) desired levels, as a list of integers (that are ORed internally),
or as a list of the names that are shown between brackets.
or as a list of the names that are shown between brackets, such that
.LP
.nf
loglevel 129
loglevel 128 1
loglevel acl trace
.fi
.LP
are equivalent.
The keyword
.B any
can be used as a shortcut to enable logging at all levels (equivalent to -1).
.RE
.TP
.B moduleload <filename>

View File

@ -2003,6 +2003,7 @@ restrict_unknown:;
{ LDAP_DEBUG_PARSE, "Parse" },
{ LDAP_DEBUG_CACHE, "Cache" },
{ LDAP_DEBUG_INDEX, "Index" },
{ -1, "Any" },
{ 0, NULL }
};
int j;