We need some kind of logging system setup. It should write to a local logs/ folder. Each logged line should include the severity and timestamp in the form:
[YYYY-MM-DD HH:MM:SS.ms] SEVERITY - msg
The logged timestamp should use the local time, not UTC. It should also use a 24 hour format.
📄 Example
[2020-04-29 12:11:00.0123] DEBUG - Some debug message.
📖 Overview
We need some kind of logging system setup. It should write to a local
logs/
folder. Each logged line should include the severity and timestamp in the form:The logged timestamp should use the local time, not UTC. It should also use a 24 hour format.
📄 Example