mirror of
https://github.com/frappe/gunicorn.git
synced 2026-01-14 11:09:11 +08:00
Add options to setup logging to syslog: - `--log-syslog`: enable syslog. It default to `/var/run/syslog` on darwin, `/var/run/log` on freebsd, `/dev/log` on openbsd and udp://localhost:514 for other platforms. - `--log-syslog-prefix: Pass the parameter to use as the program name - `--log-syslog-to`: Setup the syslog address to send message. Address startinf by udp:// will send to udp, unix:// to a unix socket and tcp:// to tcp (useful for rsyslog) fix #452 .