Logs
Last Updated: 27, July 2020 at 09:35:49
Overview
This is a very powerful, yet difficult to get started with library for doing logging in OCaml. The key idea is that logging should:
- Have a severity of reporting level (
Debugger
,Error
...) - A source - it should be easy to find where something is being printed from.
- Independent - programmers should be able to turn logs on and off to help track down bugs.