You are viewing a plain text version of this content. The canonical link for it is here.
Posted to log4net-dev@logging.apache.org by ni...@apache.org on 2004/12/13 02:43:18 UTC

cvs commit: logging-log4net/src ILog.cs

nicko       2004/12/12 17:43:18

  Modified:    src      ILog.cs
  Log:
  Updted doc comments
  
  Revision  Changes    Path
  1.9       +27 -17    logging-log4net/src/ILog.cs
  
  Index: ILog.cs
  ===================================================================
  RCS file: /home/cvs/logging-log4net/src/ILog.cs,v
  retrieving revision 1.8
  retrieving revision 1.9
  diff -u -r1.8 -r1.9
  --- ILog.cs	6 Dec 2004 02:26:03 -0000	1.8
  +++ ILog.cs	13 Dec 2004 01:43:18 -0000	1.9
  @@ -67,6 +67,7 @@
   		/// <summary>
   		/// Log a message object with the <see cref="Level.Debug"/> level.
   		/// </summary>
  +		/// <param name="message">The message object to log.</param>
   		/// <remarks>
   		/// <para>
   		/// This method first checks if this logger is <c>DEBUG</c>
  @@ -85,7 +86,6 @@
   		/// <see cref="Debug(object,Exception)"/> form instead.
   		/// </para>
   		/// </remarks>
  -		/// <param name="message">The message object to log.</param>
   		/// <seealso cref="Debug(object,Exception)"/>
   		/// <seealso cref="IsDebugEnabled"/>
   		void Debug(object message);
  @@ -95,14 +95,16 @@
   		/// the stack trace of the <see cref="Exception"/> passed
   		/// as a parameter.
   		/// </summary>
  +		/// <param name="message">The message object to log.</param>
  +		/// <param name="exception">The exception to log, including its stack trace.</param>
   		/// <remarks>
  +		/// <para>
   		/// See the <see cref="Debug(object)"/> form for more detailed information.
  +		/// </para>
   		/// </remarks>
  -		/// <param name="message">The message object to log.</param>
  -		/// <param name="t">The exception to log, including its stack trace.</param>
   		/// <seealso cref="Debug(object)"/>
   		/// <seealso cref="IsDebugEnabled"/>
  -		void Debug(object message, Exception t);
  +		void Debug(object message, Exception exception);
   
   		/// <overloads>Log a formatted string with the <see cref="Level.Debug"/> level.</overloads>
   		/// <summary>
  @@ -180,14 +182,16 @@
   		/// the stack trace of the <see cref="Exception"/> passed
   		/// as a parameter.
   		/// </summary>
  +		/// <param name="message">The message object to log.</param>
  +		/// <param name="exception">The exception to log, including its stack trace.</param>
   		/// <remarks>
  +		/// <para>
   		/// See the <see cref="Info(object)"/> form for more detailed information.
  +		/// </para>
   		/// </remarks>
  -		/// <param name="message">The message object to log.</param>
  -		/// <param name="t">The exception to log, including its stack trace.</param>
   		/// <seealso cref="Info(object)"/>
   		/// <seealso cref="IsInfoEnabled"/>
  -		void Info(object message, Exception t);
  +		void Info(object message, Exception exception);
   
   		/// <overloads>Log a formatted message string with the <see cref="Level.Info"/> level.</overloads>
   		/// <summary>
  @@ -265,14 +269,16 @@
   		/// the stack trace of the <see cref="Exception"/> passed
   		/// as a parameter.
   		/// </summary>
  +		/// <param name="message">The message object to log.</param>
  +		/// <param name="exception">The exception to log, including its stack trace.</param>
   		/// <remarks>
  +		/// <para>
   		/// See the <see cref="Warn(object)"/> form for more detailed information.
  +		/// </para>
   		/// </remarks>
  -		/// <param name="message">The message object to log.</param>
  -		/// <param name="t">The exception to log, including its stack trace.</param>
   		/// <seealso cref="Warn(object)"/>
   		/// <seealso cref="IsWarnEnabled"/>
  -		void Warn(object message, Exception t);
  +		void Warn(object message, Exception exception);
   
   		/// <overloads>Log a formatted message string with the <see cref="Level.Warn"/> level.</overloads>
   		/// <summary>
  @@ -322,6 +328,7 @@
   		/// <summary>
   		/// Logs a message object with the <see cref="Level.Error"/> level.
   		/// </summary>
  +		/// <param name="message">The message object to log.</param>
   		/// <remarks>
   		/// <para>
   		/// This method first checks if this logger is <c>ERROR</c>
  @@ -340,7 +347,6 @@
   		/// <see cref="Error(object,Exception)"/> form instead.
   		/// </para>
   		/// </remarks>
  -		/// <param name="message">The message object to log.</param>
   		/// <seealso cref="Error(object,Exception)"/>
   		/// <seealso cref="IsErrorEnabled"/>
   		void Error(object message);
  @@ -350,14 +356,16 @@
   		/// the stack trace of the <see cref="Exception"/> passed
   		/// as a parameter.
   		/// </summary>
  +		/// <param name="message">The message object to log.</param>
  +		/// <param name="exception">The exception to log, including its stack trace.</param>
   		/// <remarks>
  +		/// <para>
   		/// See the <see cref="Error(object)"/> form for more detailed information.
  +		/// </para>
   		/// </remarks>
  -		/// <param name="message">The message object to log.</param>
  -		/// <param name="t">The exception to log, including its stack trace.</param>
   		/// <seealso cref="Error(object)"/>
   		/// <seealso cref="IsErrorEnabled"/>
  -		void Error(object message, Exception t);
  +		void Error(object message, Exception exception);
   
   		/// <overloads>Log a formatted message string with the <see cref="Level.Error"/> level.</overloads>
   		/// <summary>
  @@ -435,14 +443,16 @@
   		/// the stack trace of the <see cref="Exception"/> passed
   		/// as a parameter.
   		/// </summary>
  +		/// <param name="message">The message object to log.</param>
  +		/// <param name="exception">The exception to log, including its stack trace.</param>
   		/// <remarks>
  +		/// <para>
   		/// See the <see cref="Fatal(object)"/> form for more detailed information.
  +		/// </para>
   		/// </remarks>
  -		/// <param name="message">The message object to log.</param>
  -		/// <param name="t">The exception to log, including its stack trace.</param>
   		/// <seealso cref="Fatal(object)"/>
   		/// <seealso cref="IsFatalEnabled"/>
  -		void Fatal(object message, Exception t);
  +		void Fatal(object message, Exception exception);
   
   		/// <overloads>Log a formatted message string with the <see cref="Level.Fatal"/> level.</overloads>
   		/// <summary>