I have a Python application that processes a credit card. I have logging set up for the full program but I would like to split the files so 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 accessible without having to read through one long log file.
I am trying to use the Python logger for this.
1