nicko 2005/01/18 12:16:29
Modified: src/Appender RollingFileAppender.cs
src/Config XmlConfiguratorAttribute.cs
Log:
Updated doc comment
Revision Changes Path
1.17 +0 -4 logging-log4net/src/Appender/RollingFileAppender.cs
Index: RollingFileAppender.cs
===================================================================
RCS file: /home/cvs/logging-log4net/src/Appender/RollingFileAppender.cs,v
retrieving revision 1.16
retrieving revision 1.17
diff -u -r1.16 -r1.17
--- RollingFileAppender.cs 17 Jan 2005 20:18:42 -0000 1.16
+++ RollingFileAppender.cs 18 Jan 2005 20:16:29 -0000 1.17
@@ -287,10 +287,6 @@
/// The maximum applies to <b>each</b> time based group of
files and
/// <b>not</b> the total.
/// </para>
- /// <para>
- /// Using a daily roll the maximum total files would be
- /// <c>(#days run) * (maxSizeRollBackups)</c>.
- /// </para>
/// </remarks>
public int MaxSizeRollBackups
{
1.10 +6 -1 logging-log4net/src/Config/XmlConfiguratorAttribute.cs
Index: XmlConfiguratorAttribute.cs
===================================================================
RCS file: /home/cvs/logging-log4net/src/Config/XmlConfiguratorAttribute.cs,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -r1.9 -r1.10
--- XmlConfiguratorAttribute.cs 17 Jan 2005 20:18:43 -0000 1.9
+++ XmlConfiguratorAttribute.cs 18 Jan 2005 20:16:29 -0000 1.10
@@ -131,7 +131,12 @@
/// If specified this is the extension for the configuration
file.
/// The path to the config file is built by using the
<b>application
/// base</b> directory (<see cref="AppDomain.BaseDirectory"/>),
- /// the <b>assembly name</b> and the config file extension.
+ /// the <b>assembly file name</b> and the config file extension.
+ /// </para>
+ /// <para>
+ /// If the <see cref="ConfigFileExtension"/> is set to
<c>MyExt</co> then
+ /// possible config file names would be:
<c>MyConsoleApp.exe.MyExt</c> or
+ /// <c>MyClassLibrary.dll.MyExt</c>.
/// </para>
/// <para>
/// The <see cref="ConfigFile"/> takes priority over the <see
cref="ConfigFileExtension"/>.