I\'m using log4net for logging (duh!). Using the EventLogAppender, I can configure my application name, so that my events will show up in the Application/\"My Application Na
You control this with the LogName property.
E.g.:
<appender name="EventLogAppender" type="log4net.Appender.EventLogAppender" > <logName value="System" /> <applicationName value="My application Name" /> ... </appender>