Not all STDERR output and not all $req->log->foo() output makes it to
the Apache error log when using the 'ErrorLog syslog:local7'
configuration directive. This changes the sample config to match the
CustomLog config so that all output is captured and redirected to
syslog.
Signed-off-by: Bill Erickson <berick@esilibrary.com>
Signed-off-by: Dan Scott <dscott@laurentian.ca>
ErrorLog /var/log/apache2/error.log
# - log to syslog
# CustomLog "|/usr/bin/logger -p local7.info" common
-# ErrorLog syslog:local7
+# ErrorLog "|logger -p local7.error"
# ----------------------------------------------------------------------------------