Skip to content
Snippets Groups Projects
Commit 7b4a51cc authored by Pierangelo Masarati's avatar Pierangelo Masarati
Browse files

further improve loglevel selection

parent f33b5183
No related branches found
No related tags found
No related merge requests found
......@@ -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;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment