Files
symfony-flex-recipes/symfony.monolog-bundle.3.1.json
github-action[bot]andgithub-action[bot] 9a87aa4e49 Update Flex endpoint
2025-11-14 10:28:38 +00:00

88 lines
3.8 KiB
JSON

{
"manifests": {
"symfony/monolog-bundle": {
"manifest": {
"bundles": {
"Symfony\\Bundle\\MonologBundle\\MonologBundle": [
"all"
]
},
"copy-from-recipe": {
"config/": "%CONFIG_DIR%/"
}
},
"files": {
"config/packages/dev/monolog.yaml": {
"contents": [
"monolog:",
" handlers:",
" main:",
" type: stream",
" path: \"%kernel.logs_dir%/%kernel.environment%.log\"",
" level: debug",
" channels: [\"!event\"]",
" console:",
" type: console",
" process_psr_3_messages: false",
" channels: [\"!event\", \"!doctrine\", \"!console\"]",
""
],
"executable": false
},
"config/packages/prod/deprecations.yaml": {
"contents": [
"# As of Symfony 5.1, deprecations are logged in the dedicated \"deprecation\" channel when it exists",
"#monolog:",
"# channels: [deprecation]",
"# handlers:",
"# deprecation:",
"# type: stream",
"# channels: [deprecation]",
"# path: \"%kernel.logs_dir%/%kernel.environment%.deprecations.log\"",
""
],
"executable": false
},
"config/packages/prod/monolog.yaml": {
"contents": [
"monolog:",
" handlers:",
" main:",
" type: fingers_crossed",
" action_level: error",
" handler: nested",
" buffer_size: 50 # How many messages should be saved? Prevent memory leaks",
" excluded_404s:",
" # regex: exclude all 404 errors from the logs",
" - ^/",
" nested:",
" type: stream",
" path: \"%kernel.logs_dir%/%kernel.environment%.log\"",
" level: debug",
" console:",
" type: console",
" process_psr_3_messages: false",
" channels: [\"!event\", \"!doctrine\"]",
""
],
"executable": false
},
"config/packages/test/monolog.yaml": {
"contents": [
"monolog:",
" handlers:",
" main:",
" type: stream",
" path: \"%kernel.logs_dir%/%kernel.environment%.log\"",
" level: debug",
" channels: [\"!event\"]",
""
],
"executable": false
}
},
"ref": "9b56f4b8173aab3349130daa3e2501822c486f19"
}
}
}