{ "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" } } }