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/11/12 23:35:04 UTC

cvs commit: logging-log4net/extensions/net/1.0/log4net.Ext.EventID/cs/src EventIDLogImpl.cs

nicko       2004/11/12 14:35:04

  Modified:    extensions/net/1.0/log4net.Ext.EventID/cs/src
                        EventIDLogImpl.cs
  Log:
  Renamed LoggingEvent.EventProperties to LoggingEvent.Properties.
  
  Revision  Changes    Path
  1.5       +4 -4      logging-log4net/extensions/net/1.0/log4net.Ext.EventID/cs/src/EventIDLogImpl.cs
  
  Index: EventIDLogImpl.cs
  ===================================================================
  RCS file: /home/cvs/logging-log4net/extensions/net/1.0/log4net.Ext.EventID/cs/src/EventIDLogImpl.cs,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- EventIDLogImpl.cs	19 Sep 2004 17:52:54 -0000	1.4
  +++ EventIDLogImpl.cs	12 Nov 2004 22:35:04 -0000	1.5
  @@ -45,7 +45,7 @@
   			if (this.IsInfoEnabled)
   			{
   				LoggingEvent loggingEvent = new LoggingEvent(ThisDeclaringType, Logger.Repository, Logger.Name, Level.Info, message, t);
  -				loggingEvent.EventProperties["EventID"] = eventId;
  +				loggingEvent.Properties["EventID"] = eventId;
   				Logger.Log(loggingEvent);
   			}
   		}
  @@ -60,7 +60,7 @@
   			if (this.IsWarnEnabled)
   			{
   				LoggingEvent loggingEvent = new LoggingEvent(ThisDeclaringType, Logger.Repository, Logger.Name, Level.Warn, message, t);
  -				loggingEvent.EventProperties["EventID"] = eventId;
  +				loggingEvent.Properties["EventID"] = eventId;
   				Logger.Log(loggingEvent);
   			}
   		}
  @@ -75,7 +75,7 @@
   			if (this.IsErrorEnabled)
   			{
   				LoggingEvent loggingEvent = new LoggingEvent(ThisDeclaringType, Logger.Repository, Logger.Name, Level.Error, message, t);
  -				loggingEvent.EventProperties["EventID"] = eventId;
  +				loggingEvent.Properties["EventID"] = eventId;
   				Logger.Log(loggingEvent);
   			}
   		}
  @@ -90,7 +90,7 @@
   			if (this.IsFatalEnabled)
   			{
   				LoggingEvent loggingEvent = new LoggingEvent(ThisDeclaringType, Logger.Repository, Logger.Name, Level.Fatal, message, t);
  -				loggingEvent.EventProperties["EventID"] = eventId;
  +				loggingEvent.Properties["EventID"] = eventId;
   				Logger.Log(loggingEvent);
   			}
   		}