Closed
Description
Problem
Currently the workflow scripts, notably those in push_data_to_ccos/
and sync_community_team/
are riddled with print()
statements serving the function of logging. While this is a perfectly workable solution, it is by no means elegant. Also the process of manually indenting the messages in the print()
statements is messy and error-prone and makes for hard to comprehend logs.
Alternatives
Python comes with a nifty logging
module that should be used instead. Sprinkle some ANSI colouring and 🤯 .
Implementation
- I would be interested in implementing this feature.