Skip to content

Commit b7a816f

Browse files
committed
make RollingFileAppender.RollFile virtual
fixes #234
1 parent f4318af commit b7a816f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/log4net/Appender/RollingFileAppender.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1112,7 +1112,7 @@ protected void RollOverTime(bool fileIsOpen)
11121112
/// also checks for existence of target file and deletes if it does.
11131113
/// </para>
11141114
/// </remarks>
1115-
protected void RollFile(string fromFile, string toFile)
1115+
protected virtual void RollFile(string fromFile, string toFile)
11161116
{
11171117
if (FileExists(fromFile))
11181118
{

0 commit comments

Comments
 (0)