File tree Expand file tree Collapse file tree 1 file changed +10
-3
lines changed Expand file tree Collapse file tree 1 file changed +10
-3
lines changed Original file line number Diff line number Diff line change @@ -54,7 +54,7 @@ allows you to log the messages in several ways easily.
54
54
55
55
monolog :
56
56
handlers :
57
- syslog :
57
+ applog :
58
58
type : stream
59
59
path : /var/log/symfony.log
60
60
level : error
@@ -65,7 +65,9 @@ allows you to log the messages in several ways easily.
65
65
file :
66
66
type : stream
67
67
level : debug
68
-
68
+ syslog :
69
+ type : syslog
70
+ level : error
69
71
.. code-block :: xml
70
72
71
73
<container xmlns =" http://symfony.com/schema/dic/services"
@@ -76,7 +78,7 @@ allows you to log the messages in several ways easily.
76
78
77
79
<monolog : config >
78
80
<monolog : handler
79
- name =" syslog "
81
+ name =" applog "
80
82
type =" stream"
81
83
path =" /var/log/symfony.log"
82
84
level =" error"
@@ -92,6 +94,11 @@ allows you to log the messages in several ways easily.
92
94
type =" stream"
93
95
level =" debug"
94
96
/>
97
+ <monolog : handler
98
+ name =" syslog"
99
+ type =" syslog"
100
+ level =" error"
101
+ />
95
102
</monolog : config >
96
103
</container >
97
104
You can’t perform that action at this time.
0 commit comments