-
Notifications
You must be signed in to change notification settings - Fork 148
Expand file tree
/
Copy pathyaml.yaml
More file actions
31 lines (30 loc) · 992 Bytes
/
yaml.yaml
File metadata and controls
31 lines (30 loc) · 992 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
# app/config/config_prod.yml
imports:
- { resource: config.yml }
monolog:
handlers:
main:
type: fingers_crossed
action_level: critical
handler: grouped
grouped:
type: group
members: [streamed, deduplicated]
streamed:
type: stream
path: '%kernel.logs_dir%/%kernel.environment%.log'
level: debug
deduplicated:
type: deduplication
handler: swift
swift:
noone: null
type: swift_mailer
from_email: 'from_email@test.com'
# Or multiple receivers:
# to_email: ['to_email1@ourcodeworld.com', 'to_email2@ourcodeworld.com']
to_email: "to_email@ourcodeworld.com"
subject: 'An Error Occurred! %%message%%'
level: debug
formatter: monolog.formatter.html
content_type: text/html