I have a program that once started, it will executed a flow (few classes involved) several times - each in a different thread. The flow is the same - just different parameters sent to it each time it is invoked.
Each flow will execute on its own thread.
I want to be able to define a file appender (essentially file log) for each thread - so once a flow starts, it programmatically creates its own log file and writes to it.
Searched for it but couldnt find a simple solution for it Can you help?
Ta