Skip to content
This repository was archived by the owner on Nov 27, 2020. It is now read-only.

Commit 02005b4

Browse files
committed
Fix "!event" deprecation
1 parent e9b7381 commit 02005b4

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

app/config/config_dev.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,10 +17,10 @@ monolog:
1717
type: stream
1818
path: "%kernel.logs_dir%/%kernel.environment%.log"
1919
level: debug
20-
channels: [!event]
20+
channels: ["!event"]
2121
console:
2222
type: console
23-
channels: [!event, !doctrine, !console]
23+
channels: ["!event", "!doctrine", "!console"]
2424
# uncomment to get logging in your browser
2525
# you may have to allow bigger header sizes in your Web server configuration
2626
#firephp:
@@ -31,4 +31,4 @@ monolog:
3131
# level: info
3232

3333
#swiftmailer:
34-
# delivery_addresses: ['me@example.com']
34+
# delivery_addresses: ["me@example.com"]

0 commit comments

Comments
 (0)