Skip to content

Instantly share code, notes, and snippets.

View KamranShahid's full-sized avatar

Kamran Shahid KamranShahid

View GitHub Profile
@KamranShahid
KamranShahid / CustomRollingFileAppender.cs
Created February 4, 2020 15:07
log4net archiving on log rotation
public class CustomRollingFileAppender : RollingFileAppender
{
private static readonly log4net.ILog Logger = log4net.LogManager.GetLogger(MethodBase.GetCurrentMethod().DeclaringType);
protected override void AdjustFileBeforeAppend()
{
var previousFile = File;
base.AdjustFileBeforeAppend();
if (File != previousFile)