diff options
Diffstat (limited to 'app/config/config_dev.yml')
-rw-r--r-- | app/config/config_dev.yml | 48 |
1 files changed, 48 insertions, 0 deletions
diff --git a/app/config/config_dev.yml b/app/config/config_dev.yml new file mode 100644 index 00000000..efaf396e --- /dev/null +++ b/app/config/config_dev.yml | |||
@@ -0,0 +1,48 @@ | |||
1 | imports: | ||
2 | - { resource: config.yml } | ||
3 | |||
4 | framework: | ||
5 | router: | ||
6 | resource: "%kernel.root_dir%/config/routing_dev.yml" | ||
7 | strict_requirements: true | ||
8 | profiler: { only_exceptions: false } | ||
9 | |||
10 | web_profiler: | ||
11 | toolbar: true | ||
12 | intercept_redirects: false | ||
13 | |||
14 | monolog: | ||
15 | handlers: | ||
16 | main: | ||
17 | type: stream | ||
18 | path: "%kernel.logs_dir%/%kernel.environment%.log" | ||
19 | level: debug | ||
20 | console: | ||
21 | type: console | ||
22 | bubble: false | ||
23 | verbosity_levels: | ||
24 | VERBOSITY_VERBOSE: INFO | ||
25 | VERBOSITY_VERY_VERBOSE: DEBUG | ||
26 | channels: ["!doctrine"] | ||
27 | console_very_verbose: | ||
28 | type: console | ||
29 | bubble: false | ||
30 | verbosity_levels: | ||
31 | VERBOSITY_VERBOSE: NOTICE | ||
32 | VERBOSITY_VERY_VERBOSE: NOTICE | ||
33 | VERBOSITY_DEBUG: DEBUG | ||
34 | channels: ["doctrine"] | ||
35 | # uncomment to get logging in your browser | ||
36 | # you may have to allow bigger header sizes in your Web server configuration | ||
37 | #firephp: | ||
38 | # type: firephp | ||
39 | # level: info | ||
40 | #chromephp: | ||
41 | # type: chromephp | ||
42 | # level: info | ||
43 | |||
44 | assetic: | ||
45 | use_controller: true | ||
46 | |||
47 | #swiftmailer: | ||
48 | # delivery_address: me@example.com | ||