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.
I am trying to use the python logger for this.