Skip to content

Commit 9ffb647

Browse files
committed
Updating fingerscrossed to fingers_crossed - from a very old change to symfony's core which appears to not have propogated back to the docs correctly - closes #910
1 parent 2a65c45 commit 9ffb647

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

cookbook/logging/monolog.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ allows you to log the messages in several ways easily.
5959
path: /var/log/symfony.log
6060
level: error
6161
main:
62-
type: fingerscrossed
62+
type: fingers_crossed
6363
action_level: warning
6464
handler: file
6565
file:
@@ -83,7 +83,7 @@ allows you to log the messages in several ways easily.
8383
/>
8484
<monolog:handler
8585
name="main"
86-
type="fingerscrossed"
86+
type="fingers_crossed"
8787
action-level="warning"
8888
handler="file"
8989
/>
@@ -101,7 +101,7 @@ in the order where they are defined.
101101
.. tip::
102102

103103
The handler named "file" will not be included in the stack itself as
104-
it is used as a nested handler of the fingerscrossed handler.
104+
it is used as a nested handler of the ``fingers_crossed`` handler.
105105

106106
.. note::
107107

cookbook/logging/monolog_email.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ it is broken down.
3939
<monolog:config>
4040
<monolog:handler
4141
name="mail"
42-
type="fingerscrossed"
42+
type="fingers_crossed"
4343
action-level="critical"
4444
handler="buffered"
4545
/>
@@ -58,7 +58,7 @@ it is broken down.
5858
</monolog:config>
5959
</container>
6060
61-
The ``mail`` handler is a ``fingerscrossed`` handler which means that
61+
The ``mail`` handler is a ``fingers_crossed`` handler which means that
6262
it is only triggered when the action level, in this case ``critical`` is reached.
6363
It then logs everything including messages below the action level. The
6464
``critical`` level is only triggered for 5xx HTTP code errors. The ``handler``

reference/configuration/monolog.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ Configuration Reference
1919
bubble: false
2020
formatter: my_formatter
2121
main:
22-
type: fingerscrossed
22+
type: fingers_crossed
2323
action_level: WARNING
2424
buffer_size: 30
2525
handler: custom
@@ -70,7 +70,7 @@ Configuration Reference
7070
/>
7171
<monolog:handler
7272
name="main"
73-
type="fingerscrossed"
73+
type="fingers_crossed"
7474
action-level="warning"
7575
handler="custom"
7676
/>

0 commit comments

Comments
 (0)