mirror of
https://github.com/kevinpapst/kimai2.git
synced 2025-05-07 18:40:54 +00:00

* button to duplicate old timesheets, even those from lockdown period * bump composer packages * fixes tooltip remains in view #4426 * fix js error if all widgets were removed * allow to open timesheet edit dialog from export listing * css classes for timesheet context menu, so they can be hidden * added flag to force a user to set password upon login * enable lazy-ghost-objects to fix deprecation * change user, username, internal_rate export column labels * helper method to find user by displayname * log improvements and format changes * deactivate broken schema validation
56 lines
1.9 KiB
YAML
56 lines
1.9 KiB
YAML
monolog:
|
|
channels: ["deprecation"]
|
|
|
|
when@prod:
|
|
monolog:
|
|
handlers:
|
|
main:
|
|
type: fingers_crossed
|
|
action_level: notice
|
|
handler: nested
|
|
excluded_http_codes: [403, 404]
|
|
channels: ["!deprecation"]
|
|
nested:
|
|
type: stream
|
|
level: info
|
|
path: "%kernel.logs_dir%/%kernel.environment%.log"
|
|
formatter: monolog.formatter.kimai
|
|
console:
|
|
type: console
|
|
process_psr_3_messages: false
|
|
channels: ["!event", "!doctrine", "!deprecation"]
|
|
# deactivated, because currently there are too many deprecations cause by gedmo and doctrine
|
|
# deprecation:
|
|
# type: stream
|
|
# channels: ["deprecation"]
|
|
# path: "%kernel.logs_dir%/deprecations.log"
|
|
# formatter: monolog.formatter.deprecation
|
|
|
|
when@dev:
|
|
monolog:
|
|
handlers:
|
|
main:
|
|
type: stream
|
|
path: "%kernel.logs_dir%/%kernel.environment%.log"
|
|
level: debug
|
|
channels: ["!event", "!deprecation"]
|
|
formatter: monolog.formatter.kimai
|
|
console:
|
|
type: console
|
|
process_psr_3_messages: false
|
|
channels: ["!event", "!doctrine", "!deprecation"]
|
|
deprecation:
|
|
type: stream
|
|
channels: ["deprecation"]
|
|
path: "%kernel.logs_dir%/deprecations.log"
|
|
formatter: monolog.formatter.deprecation
|
|
|
|
when@test:
|
|
monolog:
|
|
handlers:
|
|
main:
|
|
type: stream
|
|
path: "%kernel.logs_dir%/%kernel.environment%.log"
|
|
level: info
|
|
channels: ["!event"]
|
|
formatter: monolog.formatter.kimai
|