Search code examples
c#.netloggingfilenameslog4net

Log4net rolling daily filename with date in the file name


I would like to have files named for example:

dd.mm.yyyy.log

How is this possible with log4net?


Solution

  • In your Log4net config file, use the following parameter with the RollingFileAppender:

    <param name="DatePattern" value="dd.MM.yyyy'.log'" />