Defect Logs - sgml/signature GitHub Wiki
Irrelevant condition - I was checking for something that should have been skipped altogether
Constant unset - I was checking for a constant value which was never set
Missed parentheses - I did not lint the code
Public function was not local - I added a function to an object within a function instead of simple nesting
Cached value was wrong - I cached a dynamic value in a variable instead of wrapping it in a function call
Log Types
- https://www.loggly.com/docs/automated-parsing/
- https://www.loggly.com/blog/8-handy-tips-consider-logging-json/
- https://nvlpubs.nist.gov/nistpubs/Legacy/SP/nistspecialpublication800-92.pdf
Loguru Example Code
- https://github.com/Daniel-at-github/lightning_loguru/blob/master/slides.md
- https://github.com/David-Lor/Logging-Requests-POC/blob/master/logging_requests_poc/logger.py
Python Logging Example Code
- https://medium.com/better-programming/python-progress-bars-with-tqdm-by-example-ce98dbbc9697
- https://github.com/Supervisor/supervisor/blob/master/supervisor/loggers.py
- https://stackoverflow.com/questions/616645/how-to-duplicate-sys-stdout-to-a-log-file/616686