Im trying to create a log file using log4net.
I have it create a log file. But i can’t get the name of the log file to be the current date.
I have tried this:
<file value="log\\$date.txt"/>
But this just leans me with a file called “$date.txt” in the log folder.
I would like the file to be named “25-04-2012.txt”
Anyone know the little trick to make this work?
From the documentation, you should use a RollingFileAppender
Documentation (search for rollingFileappender)