Safe to ignore, to debug stuff we are increasingly in need of more information:
Bug 27699 - Update LDAP logging to stats+sync Bug 27207 - Log all access to LDAP
We're currently trying to find a middle ground via:
Bug 28274 - LDAP Logging is too high
Old default: 32768 (OR 0x8000 OR none) would just log critical stuff
New defaults: 16640 = stats + sync, this is set only if 32768 was still present (in-case you set another value on your own).
Master: 32768 none (critical only)
Replicas: 49152 = none + sync = 32768 + 16384 (no stats but sync replica entries are logged)
For instance to set that replica value it would be:
zmlocalconfig -e ldap_log_level=49152
OR
zmlocalconfig -e ldap_log_level="none sync"
You can define it several ways (single interger in decimal or hexadecimal, or keywords) and then you can combine them - for instance these are equivalent:
loglevel 129
loglevel 0x81
loglevel 128 1
loglevel 0x80 0x1
loglevel acl trace
hexadecimal <> decimal conversion tool
The keyword any can be used as a shortcut to enable logging at all levels (equivalent to -1).
The keyword none, or the equivalent integer representation (32768 or 0x800), causes those messages that are always logged regardless of the configured loglevel to be output (specified & critical stuff). In fact, if no loglevel (or a 0 level) is defined, no logging occurs, so at least the none level is required to have high priority messages logged.
In short, 32768 (OR 0x8000 OR none) = only messages that get logged whatever log level is set, thus you get critical stuff.
5.0.5 style:
zmlocalconfig -e ldap_log_level=32768
zmcontrol stop/start
5.0.6 style:
zmlocalconfig -e ldap_log_level=16640
zmcontrol stop/start