mirror of
https://git.openldap.org/openldap/openldap.git
synced 2024-12-21 03:10:25 +08:00
further improve loglevel selection
This commit is contained in:
parent
f33b51832a
commit
7b4a51cc28
@ -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>
|
||||
|
@ -2003,6 +2003,7 @@ restrict_unknown:;
|
||||
{ LDAP_DEBUG_PARSE, "Parse" },
|
||||
{ LDAP_DEBUG_CACHE, "Cache" },
|
||||
{ LDAP_DEBUG_INDEX, "Index" },
|
||||
{ -1, "Any" },
|
||||
{ 0, NULL }
|
||||
};
|
||||
int j;
|
||||
|
Loading…
Reference in New Issue
Block a user