0
Fork 0
mirror of https://github.com/TryGhost/Ghost.git synced 2025-02-03 23:00:14 -05:00

Added default logging rotation config (#8974)

no issue

- define `period` and `count` in our defaults.json config
- advantage: easier access and better overview how logging is configured by default
- period is 1d and count is 10
This commit is contained in:
Katharina Irrgang 2017-09-05 17:25:20 +02:00 committed by Hannah Wolfe
parent 1fe87a6110
commit 71cee504c2

View file

@ -18,7 +18,9 @@
"logging": {
"level": "info",
"rotation": {
"enabled": false
"enabled": false,
"period": "1d",
"count": 10
},
"transports": ["stdout"]
},