Skip to content

Commit 96ce11e

Browse files
authored
fixing typo
1 parent eee0a11 commit 96ce11e

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

logging.rst

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ to write logs using the :phpfunction:`syslog` function:
6464

6565
.. code-block:: yaml
6666
67-
# config/packcages/monolog.yaml
67+
# config/packages/monolog.yaml
6868
monolog:
6969
handlers:
7070
# this "file_log" key could be anything
@@ -82,7 +82,7 @@ to write logs using the :phpfunction:`syslog` function:
8282
8383
.. code-block:: xml
8484
85-
<!-- config/packcages/monolog.xml -->
85+
<!-- config/packages/monolog.xml -->
8686
<?xml version="1.0" encoding="UTF-8" ?>
8787
<container xmlns="http://symfony.com/schema/dic/services"
8888
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
@@ -109,7 +109,7 @@ to write logs using the :phpfunction:`syslog` function:
109109
110110
.. code-block:: php
111111
112-
// config/packcages/monolog.php
112+
// config/packages/monolog.php
113113
$container->loadFromExtension('monolog', array(
114114
'handlers' => array(
115115
'file_log' => array(
@@ -140,7 +140,7 @@ one of the messages reaches an ``action_level``. Take this example:
140140

141141
.. code-block:: yaml
142142
143-
# config/packcages/monolog.yaml
143+
# config/packages/monolog.yaml
144144
monolog:
145145
handlers:
146146
filter_for_errors:
@@ -161,7 +161,7 @@ one of the messages reaches an ``action_level``. Take this example:
161161
162162
.. code-block:: xml
163163
164-
<!-- config/packcages/monolog.xml -->
164+
<!-- config/packages/monolog.xml -->
165165
<?xml version="1.0" encoding="UTF-8" ?>
166166
<container xmlns="http://symfony.com/schema/dic/services"
167167
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
@@ -194,7 +194,7 @@ one of the messages reaches an ``action_level``. Take this example:
194194
195195
.. code-block:: php
196196
197-
// config/packcages/monolog.php
197+
// config/packages/monolog.php
198198
$container->loadFromExtension('monolog', array(
199199
'handlers' => array(
200200
'filter_for_errors' => array(
@@ -254,7 +254,7 @@ option of your handler to ``rotating_file``:
254254

255255
.. code-block:: yaml
256256
257-
# config/packcages/dev/monolog.yaml
257+
# config/packages/dev/monolog.yaml
258258
monolog:
259259
handlers:
260260
main:
@@ -267,7 +267,7 @@ option of your handler to ``rotating_file``:
267267
268268
.. code-block:: xml
269269
270-
<!-- config/packcages/dev/monolog.xml -->
270+
<!-- config/packages/dev/monolog.xml -->
271271
<?xml version="1.0" encoding="UTF-8" ?>
272272
<container xmlns="http://symfony.com/schema/dic/services"
273273
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
@@ -291,7 +291,7 @@ option of your handler to ``rotating_file``:
291291
292292
.. code-block:: php
293293
294-
// config/packcages/dev/monolog.php
294+
// config/packages/dev/monolog.php
295295
$container->loadFromExtension('monolog', array(
296296
'handlers' => array(
297297
'main' => array(

0 commit comments

Comments
 (0)