Update NEWS, UPGRADING and default php.ini files with syslog changes

This commit is contained in:
Jakub Zelenka 2018-07-01 18:27:36 +01:00
parent 2475337bd8
commit ce0721bee5
4 changed files with 22 additions and 4 deletions

2
NEWS
View File

@ -12,6 +12,8 @@ PHP NEWS
. Fixed bug #76509 (Inherited static properties can be desynchronized from
their parent by ref). (Nikita)
. Fixed bug #76439 (Changed behaviour in unclosed HereDoc). (Nikita, tpunt)
. Added syslog.facility and syslog.ident INI entries for customizing syslog
logging. (Philip Prindeville)
- DOM:
. Fixed bug #76285 (DOMDocument::formatOutput attribute sometimes ignored).

View File

@ -372,6 +372,14 @@ Standard:
. This INI directive has been removed. The value has already been ignored
since PHP 5.3.0.
- syslog.facility
- New INI to set syslog facility which specifies what type of program is
logging the message. It is used only when error_log is set to syslog.
- syslog.ident
. New INI to set syslog ident string which is prepended to every message. It
is used only when error_log is set syslog.
========================================
12. Windows Support
========================================

View File

@ -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

View File

@ -586,9 +586,13 @@ html_errors = On
;error_log = syslog
; 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