File tree Expand file tree Collapse file tree 4 files changed +22
-4
lines changed Expand file tree Collapse file tree 4 files changed +22
-4
lines changed Original file line number Diff line number Diff line change @@ -12,6 +12,8 @@ PHP NEWS
12
12
. Fixed bug #76509 (Inherited static properties can be desynchronized from
13
13
their parent by ref). (Nikita)
14
14
. Fixed bug #76439 (Changed behaviour in unclosed HereDoc). (Nikita, tpunt)
15
+ . Added syslog.facility and syslog.ident INI entries for customizing syslog
16
+ logging. (Philip Prindeville)
15
17
16
18
- DOM:
17
19
. Fixed bug #76285 (DOMDocument::formatOutput attribute sometimes ignored).
Original file line number Diff line number Diff line change @@ -372,6 +372,14 @@ Standard:
372
372
. This INI directive has been removed. The value has already been ignored
373
373
since PHP 5.3.0.
374
374
375
+ - syslog.facility
376
+ - New INI to set syslog facility which specifies what type of program is
377
+ logging the message. It is used only when error_log is set to syslog.
378
+
379
+ - syslog.ident
380
+ . New INI to set syslog ident string which is prepended to every message. It
381
+ is used only when error_log is set syslog.
382
+
375
383
========================================
376
384
12. Windows Support
377
385
========================================
Original file line number Diff line number Diff line change @@ -577,9 +577,13 @@ html_errors = On
577
577
;error_log = php_errors.log
578
578
; Log errors to syslog (Event Log on Windows).
579
579
;error_log = syslog
580
- ; the next two lines ony happen if the previous line sending errors to syslog
581
- ; has been set as well.
580
+
581
+ ; The syslog ident is a string which is prepended to every message logged
582
+ ; to syslog. Only used when error_log is set to syslog.
582
583
;syslog.ident = php
584
+
585
+ ; The syslog facility is used to specify what type of program is logging
586
+ ; the message. Only used when error_log is set to syslog.
583
587
;syslog.facility = user
584
588
585
589
;windows.show_crt_warning
Original file line number Diff line number Diff line change @@ -586,9 +586,13 @@ html_errors = On
586
586
;error_log = syslog
587
587
; Log errors to syslog (Event Log on Windows).
588
588
;error_log = syslog
589
- ; the next two lines ony happen if the previous line sending errors to syslog
590
- ; has been set as well.
589
+
590
+ ; The syslog ident is a string which is prepended to every message logged
591
+ ; to syslog. Only used when error_log is set to syslog.
591
592
;syslog.ident = php
593
+
594
+ ; The syslog facility is used to specify what type of program is logging
595
+ ; the message. Only used when error_log is set to syslog.
592
596
;syslog.facility = user
593
597
594
598
;windows.show_crt_warning
You can’t perform that action at this time.
0 commit comments