From: Bill Erickson Date: Wed, 10 Oct 2012 21:26:06 +0000 (-0400) Subject: Sample Apache error syslog captures stderr X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=81f20bb285bdda845cf7ad4b54e974b85d33c8bb;p=evergreen%2Fpines.git Sample Apache error syslog captures stderr 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 Signed-off-by: Dan Scott --- diff --git a/Open-ILS/examples/apache/eg.conf b/Open-ILS/examples/apache/eg.conf index 280cea6f7e..a0b27846c1 100644 --- a/Open-ILS/examples/apache/eg.conf +++ b/Open-ILS/examples/apache/eg.conf @@ -6,7 +6,7 @@ CustomLog /var/log/apache2/access.log combined 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" # ----------------------------------------------------------------------------------