mirror of
https://gh.wpcy.net/https://github.com/SuiteCRM/SuiteCRM-Core.git
synced 2026-05-05 13:43:44 +08:00
- Add Upgrade Package handler -- Add base package handler service with re-usable api handle packages -- Re-usable service to extract and apply upgrade packages -- Add upgrade settings to configs - Add Base command -- Add abstract class with common input processing logic - Add Upgrade Command -- Add re-usable UpgradeHandler with api for applying upgrades -- Add command to call upgrade handler -- Add service feedback -- Call clear cache on upgrade command - Add Upgrade step by step execution -- Add process step interface and executor --- add common logging to each step execution --- add debug logging for each step execution --- allow running processes step by step --- allow configuring steps independently -- Move upgrade handler and upgrade command to use step executor -- Add upgrade log -- Improve upgrade command output
26 lines
677 B
YAML
26 lines
677 B
YAML
monolog:
|
|
handlers:
|
|
main:
|
|
type: fingers_crossed
|
|
action_level: error
|
|
handler: nested
|
|
excluded_http_codes: [404, 405]
|
|
# Prevents memory leaks
|
|
buffer_size: 50
|
|
channels: ["!upgrade"]
|
|
nested:
|
|
type: stream
|
|
path: "%kernel.logs_dir%/%kernel.environment%.log"
|
|
level: debug
|
|
console:
|
|
type: console
|
|
process_psr_3_messages: false
|
|
channels: ["!event", "!doctrine", "!upgrade"]
|
|
deprecation:
|
|
type: stream
|
|
path: "%kernel.logs_dir%/%kernel.environment%.deprecations.log"
|
|
deprecation_filter:
|
|
type: filter
|
|
handler: deprecation
|
|
max_level: info
|
|
channels: ["php"]
|