Hello again,
I did find an odd thing in v1.68. Even when feat_log_trace is set
to 0, it still gives the trace in the log.
In DumpLog() in Sanitizer.pm, I changed:
$alevel = SLOG_ALL if ($conf->{"feat_log_trace"});
to:
$alevel = SLOG_ALL if ($conf->{"feat_log_trace"} != 0);
and the feat_log_trace settng works properly. I don't understand hash
references well enough to explain this...
-- Doug McCasland Healdsburg, California <31011@xyz.molar.is>