wallabag/app/config/config_dev.yml

49 lines
1.2 KiB
YAML
Raw Permalink Normal View History

2015-01-22 07:30:07 +00:00
imports:
- { resource: config.yml }
framework:
router:
resource: "%kernel.project_dir%/app/config/routing_dev.yml"
2015-01-22 07:30:07 +00:00
strict_requirements: true
2016-06-24 09:28:07 +00:00
profiler:
only_exceptions: false
2015-01-22 07:30:07 +00:00
2022-12-15 11:02:52 +00:00
mailer:
# see https://mailcatcher.me/
dsn: smtp://127.0.0.1:1025
2015-01-22 07:30:07 +00:00
web_profiler:
toolbar: true
intercept_redirects: false
monolog:
handlers:
main:
2016-06-24 09:28:07 +00:00
type: stream
path: "%kernel.logs_dir%/%kernel.environment%.log"
level: debug
2016-06-01 19:27:35 +00:00
channels: ['!event']
2015-01-22 07:30:07 +00:00
console:
2016-06-24 09:28:07 +00:00
type: console
2015-01-22 07:30:07 +00:00
bubble: false
verbosity_levels:
VERBOSITY_VERBOSE: INFO
VERBOSITY_VERY_VERBOSE: DEBUG
2016-06-01 19:27:35 +00:00
channels: ['!event', '!doctrine']
2015-01-22 07:30:07 +00:00
console_very_verbose:
2016-06-24 09:28:07 +00:00
type: console
2015-01-22 07:30:07 +00:00
bubble: false
verbosity_levels:
VERBOSITY_VERBOSE: NOTICE
VERBOSITY_VERY_VERBOSE: NOTICE
VERBOSITY_DEBUG: DEBUG
2016-01-14 17:15:07 +00:00
channels: [doctrine]
2015-01-22 07:30:07 +00:00
2016-09-03 12:02:50 +00:00
# If you want to use cache for queries used in WallabagExtension
# Uncomment the following lines
#doctrine:
# orm:
# metadata_cache_driver: apcu
# result_cache_driver: apcu
# query_cache_driver: apcu