Skip to content

Commit 1a6ff0f

Browse files
sketchturnerFreeAndNil
authored andcommitted
fixed SetQWForFiles method name in FileAppender from #196 (#217)
1 parent 33aea96 commit 1a6ff0f

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

src/log4net/Appender/FileAppender.cs

+6-6
Original file line numberDiff line numberDiff line change
@@ -1232,7 +1232,7 @@ protected virtual void OpenFile(string fileName, bool append)
12321232
_stream.AcquireLock();
12331233
try
12341234
{
1235-
SetQwForFiles(_stream);
1235+
SetQWForFiles(_stream);
12361236
}
12371237
finally
12381238
{
@@ -1250,22 +1250,22 @@ protected virtual void OpenFile(string fileName, bool append)
12501250
/// <param name="fileStream">the file stream that has been opened for writing</param>
12511251
/// <remarks>
12521252
/// <para>
1253-
/// This implementation of <see cref="SetQwForFiles(Stream)"/> creates a <see cref="StreamWriter"/>
1253+
/// This implementation of <see cref="SetQWForFiles(Stream)"/> creates a <see cref="StreamWriter"/>
12541254
/// over the <paramref name="fileStream"/> and passes it to the
1255-
/// <see cref="SetQwForFiles(TextWriter)"/> method.
1255+
/// <see cref="SetQWForFiles(TextWriter)"/> method.
12561256
/// </para>
12571257
/// <para>
12581258
/// This method can be overridden by subclasses that want to wrap the
12591259
/// <see cref="Stream"/> in some way, for example to encrypt the output
12601260
/// data using a <c>System.Security.Cryptography.CryptoStream</c>.
12611261
/// </para>
12621262
/// </remarks>
1263-
protected virtual void SetQwForFiles(Stream fileStream)
1263+
protected virtual void SetQWForFiles(Stream fileStream)
12641264
{
12651265
#pragma warning disable CA2000 // Dispose objects before losing scope
12661266
StreamWriter writer = new(fileStream, Encoding);
12671267
#pragma warning restore CA2000 // Dispose objects before losing scope
1268-
SetQwForFiles(writer);
1268+
SetQWForFiles(writer);
12691269
}
12701270

12711271
/// <summary>
@@ -1278,7 +1278,7 @@ protected virtual void SetQwForFiles(Stream fileStream)
12781278
/// wrap the <see cref="TextWriter"/> in some way.
12791279
/// </para>
12801280
/// </remarks>
1281-
protected virtual void SetQwForFiles(TextWriter writer)
1281+
protected virtual void SetQWForFiles(TextWriter writer)
12821282
=> QuietWriter = new(writer, ErrorHandler);
12831283

12841284
/// <summary>

src/log4net/Appender/RollingFileAppender.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -468,7 +468,7 @@ public RollingMode RollingStyle
468468
/// This method can be overridden by subclasses.
469469
/// </remarks>
470470
/// <param name="writer">the writer to set</param>
471-
protected override void SetQwForFiles(TextWriter writer)
471+
protected override void SetQWForFiles(TextWriter writer)
472472
=> QuietWriter = new CountingQuietTextWriter(writer, ErrorHandler);
473473

474474
/// <summary>

0 commit comments

Comments
 (0)