Is there a way to have Lua log to syslog only, and not to stderr? When I
call `TXN.log(...)`, the message shows up in syslog AND stderr.
The Lua documentation implies this is possible as it has this statement
(http://www.arpalert.org/src/haproxy-lua-api/1.9/index.html):
> The log is sent, according with the HAProxy configuration file, on
the default syslog server if it is configured and on the stderr if it is
allowed.
So how do I make stderr not allowed?
In my config, I have the following log related settings in defaults
log 127.0.0.1:514 daemon
option httplog
-Patrick