Is there a way to create a log rotation with NLOG that records a log for each day for seven days and then archives them after the seven days?
this is my current target with this i :
<target xsi:type="File"
name="error"
layout="${longdate} ${uppercase:${level}}: - ${message}"
fileName="${basedir}/logs/Error.log"
archiveFileName="${basedir}/logs/archive/Error{#}.zip"
archiveNumbering="Rolling"
enableArchiveFileCompression="true"
archiveEvery="Sunday"
archiveAboveSize="10000000"
maxArchiveDays ="28"
archiveDateFormat="yyyy-MM-dd"
concurrentWrites="false"/>