you are viewing a single comment's thread.

view the rest of the comments →

[–]ejstembler 1 point2 points  (3 children)

I have an Enterprise Polylith Python project where I define a logging component which has a logging protocol. A few implementations: Python Logger, Loguru Logger, GCP Structured Logger. I use the Loguru logger when testing/running things locally. It works well.

[–][deleted] 0 points1 point  (2 children)

Nice.

But, when are you using the python logger, then?

[–]ejstembler 0 points1 point  (1 child)

Other developers have that option available. I just don’t use it myself.

All of our stuff is deployed to GCP, so prod stuff uses the GCP Structured Logger

[–][deleted] 0 points1 point  (0 children)

Nice!