Relative Content

Tag Archive for python-3.xlogging

configure logging for uvicorn

Using logging in python always feels like a banging my head against a wall.
I am trying to configure uvicorn logger.

Create new log file everytime a function runs

I have a python application that processes a credit card. I have logging setup for the full program but i would like to split the files each time a function is called it would write a log file just for that function/transaction. This way i have each transaction logged and easily accesibable without having to read through one long log file.