Skip to content

Commit bf2060d

Browse files
committed
Review feedback
1 parent b2f2c26 commit bf2060d

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

src/Serilog.Sinks.File/FileLoggerConfigurationExtensions.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright 2013-2016 Serilog Contributors
1+
// Copyright 2013-2017 Serilog Contributors
22
//
33
// Licensed under the Apache License, Version 2.0 (the "License");
44
// you may not use this file except in compliance with the License.
@@ -136,7 +136,7 @@ public static LoggerConfiguration File(
136136
/// <param name="flushToDiskInterval">If provided, a full disk flush will be performed periodically at the specified interval.</param>
137137
/// <param name="rollingInterval">The interval at which logging will roll over to a new file.</param>
138138
/// <param name="rollOnFileSizeLimit">If <code>true</code>, a new file will be created when the file size limit is reached. Filenames
139-
/// will have a number appended in the format <code>_NNNNN</code>, with the first filename given no number.</param>
139+
/// will have a number appended in the format <code>_NNN</code>, with the first filename given no number.</param>
140140
/// <param name="retainedFileCountLimit">The maximum number of log files that will be retained,
141141
/// including the current log file. For unlimited retention, pass null. The default is 31.</param>
142142
/// <param name="encoding">Character encoding used to write the text file. The default is UTF-8 without BOM.</param>
@@ -191,7 +191,7 @@ public static LoggerConfiguration File(
191191
/// <param name="flushToDiskInterval">If provided, a full disk flush will be performed periodically at the specified interval.</param>
192192
/// <param name="rollingInterval">The interval at which logging will roll over to a new file.</param>
193193
/// <param name="rollOnFileSizeLimit">If <code>true</code>, a new file will be created when the file size limit is reached. Filenames
194-
/// will have a number appended in the format <code>_NNNNN</code>, with the first filename given no number.</param>
194+
/// will have a number appended in the format <code>_NNN</code>, with the first filename given no number.</param>
195195
/// <param name="retainedFileCountLimit">The maximum number of log files that will be retained,
196196
/// including the current log file. For unlimited retention, pass null. The default is 31.</param>
197197
/// <param name="encoding">Character encoding used to write the text file. The default is UTF-8 without BOM.</param>

src/Serilog.Sinks.File/Sinks/File/RollingFileSink.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright 2013-2016 Serilog Contributors
1+
// Copyright 2013-2017 Serilog Contributors
22
//
33
// Licensed under the Apache License, Version 2.0 (the "License");
44
// you may not use this file except in compliance with the License.

src/Serilog.Sinks.File/Sinks/File/RollingLogFile.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright 2013-2016 Serilog Contributors
1+
// Copyright 2013-2017 Serilog Contributors
22
//
33
// Licensed under the Apache License, Version 2.0 (the "License");
44
// you may not use this file except in compliance with the License.

0 commit comments

Comments
 (0)