Hello
In the Python SDK, I've seen that for the logger the only options to configure the format is to select either TEXT
or JSON
, the TEXT
option setting this format: %(asctime)s %(levelname)s %(message)s
I was wondering if there is a way to modify this format to match the one that all my other loggers follow. Of course, I could modify the logger.py
module file by myself, but then I would have to do it in all my environments.
If it is not possible to modify it without editing the package, I would suggest to include that option in a future release. I think it's a feature which wouldn't be hard to implement, and would be useful for projects with strict logging format conventions.
Thank you!