I like to use more then one log file(with RollingFileAppender) in my C# applications.
The default log is "main.log".
- The user can create new instance from a user control and can start something in this. I want to log the events into Log filename "log1.log"
- The next instance of user control write into "log2.log" etc...
How can I configure log4net for this application?
Thanks.