Files
symfony-flex-recipes/symfony.monolog-bundle.3.1.json
T
github-action[bot]andgithub-action[bot] ec8144456d Update Flex endpoint
2021-11-23 10:20:55 +00:00

96 lines
4.3 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\"]",
" # uncomment to get logging in your browser",
" # you may have to allow bigger header sizes in your Web server configuration",
" #firephp:",
" # type: firephp",
" # level: info",
" #chromephp:",
" # type: chromephp",
" # level: info",
" 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": "feb9b6ee797ce47bb228d21c9a564a855d3dd00e"
}
}
}