diff options
author | Jakub Zelenka <bukka@php.net> | 2018-07-01 18:27:36 +0100 |
---|---|---|
committer | Jakub Zelenka <bukka@php.net> | 2018-07-01 18:27:36 +0100 |
commit | ce0721bee5fd7e4a357b893ce6a57521003c3e6d (patch) | |
tree | 9861133550ab3ee39525b81640528416cc4ccaee /php.ini-development | |
parent | 2475337bd8a0fad0dac03db3f5e7e9d331d53653 (diff) | |
download | php-git-ce0721bee5fd7e4a357b893ce6a57521003c3e6d.tar.gz |
Update NEWS, UPGRADING and default php.ini files with syslog changes
Diffstat (limited to 'php.ini-development')
-rw-r--r-- | php.ini-development | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/php.ini-development b/php.ini-development index 90fc821802..3f45c08498 100644 --- a/php.ini-development +++ b/php.ini-development @@ -577,9 +577,13 @@ html_errors = On ;error_log = php_errors.log ; Log errors to syslog (Event Log on Windows). ;error_log = syslog -; the next two lines ony happen if the previous line sending errors to syslog -; has been set as well. + +; The syslog ident is a string which is prepended to every message logged +; to syslog. Only used when error_log is set to syslog. ;syslog.ident = php + +; The syslog facility is used to specify what type of program is logging +; the message. Only used when error_log is set to syslog. ;syslog.facility = user ;windows.show_crt_warning |