mirror of
https://github.com/php/php-src.git
synced 2024-11-23 09:54:15 +08:00
Update NEWS, UPGRADING and default php.ini files with syslog changes
This commit is contained in:
parent
2475337bd8
commit
ce0721bee5
2
NEWS
2
NEWS
@ -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).
|
||||
|
@ -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
|
||||
========================================
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user