Skip to content

Commit

Permalink
Merge pull request #604
Browse files Browse the repository at this point in the history
  • Loading branch information
symfony-flex-server[bot] committed Jun 3, 2019
2 parents 461e562 + 59e5741 commit 1580d0d
Show file tree
Hide file tree
Showing 4 changed files with 58 additions and 0 deletions.
19 changes: 19 additions & 0 deletions symfony/monolog-bundle/3.3/config/packages/dev/monolog.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
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"]
23 changes: 23 additions & 0 deletions symfony/monolog-bundle/3.3/config/packages/prod/monolog.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
monolog:
handlers:
main:
type: fingers_crossed
action_level: error
handler: nested
excluded_http_codes: [404, 405]
nested:
type: stream
path: "%kernel.logs_dir%/%kernel.environment%.log"
level: debug
console:
type: console
process_psr_3_messages: false
channels: ["!event", "!doctrine"]
deprecation:
type: stream
path: "%kernel.logs_dir%/%kernel.environment%.deprecations.log"
deprecation_filter:
type: filter
handler: deprecation
max_level: info
channels: ["php"]
7 changes: 7 additions & 0 deletions symfony/monolog-bundle/3.3/config/packages/test/monolog.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
monolog:
handlers:
main:
type: stream
path: "%kernel.logs_dir%/%kernel.environment%.log"
level: debug
channels: ["!event"]
9 changes: 9 additions & 0 deletions symfony/monolog-bundle/3.3/manifest.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
{
"bundles": {
"Symfony\\Bundle\\MonologBundle\\MonologBundle": ["all"]
},
"copy-from-recipe": {
"config/": "%CONFIG_DIR%/"
},
"aliases": ["log", "logger", "logging", "logs", "monolog"]
}

0 comments on commit 1580d0d

Please sign in to comment.