12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- imports:
- - { resource: config.yml }
- doctrine:
- orm:
- result_cache_driver: array
- framework:
- router: { resource: '%kernel.root_dir%/config/routing_dev.yml' }
- profiler: { only_exceptions: false }
- swiftmailer:
- disable_delivery: true
- web_profiler:
- toolbar: true
- intercept_redirects: false
- monolog:
- handlers:
- main:
- type: stream
- path: '%kernel.logs_dir%/%kernel.environment%.log'
- level: debug
- channels: ['!event']
- firephp:
- type: firephp
- level: info
- console:
- type: console
- bubble: false
- verbosity_levels:
- VERBOSITY_VERBOSE: INFO
- VERBOSITY_VERY_VERBOSE: DEBUG
- channels: ["!doctrine"]
- console_very_verbose:
- type: console
- bubble: false
- verbosity_levels:
- VERBOSITY_VERBOSE: NOTICE
- VERBOSITY_VERY_VERBOSE: NOTICE
- VERBOSITY_DEBUG: DEBUG
- channels: ["doctrine"]
- #assetic:
- # use_controller: true
|