I want to use below code with a website. Which config sections I should add to web.config to log the output into a file or windows eventlog ?

using System.Diagnostics;

// Singleton in real code
Class Logger
{
   // In constructor: Trace.AutoFlush = false;

   public void Log(message)
   {
       String formattedLog = formatLog(message);
       Trace.TraceInformation(formattedLog);
       Trace.Flush();
   }
}
link|improve this question

feedback

1 Answer

up vote 9 down vote accepted

You should use system.diagnostics section. Here's example from MSDN for text file:

<configuration>
  <system.diagnostics>
    <trace autoflush="false" indentsize="4">
      <listeners>
        <add name="myListener" 
          type="System.Diagnostics.TextWriterTraceListener" 
          initializeData="TextWriterOutput.log" />
        <remove name="Default" />
      </listeners>
    </trace>
  </system.diagnostics>
</configuration>

This is for system events log: http://msdn.microsoft.com/en-us/library/system.diagnostics.eventlogtracelistener.aspx

link|improve this answer
Logging to windows event-log is not straight forward with asp.net since it requires administrative privileges. – Xaqron Oct 26 '10 at 3:07
do you think any changes in the web.config listiners section is required to allow logging into EventLog ? – Taras B Oct 28 '10 at 7:18
do you just need this code on the web config or do you also need the following code? ' Create a trace listener for the event log. Dim myTraceListener As New EventLogTraceListener("myEventLogSource") ' Add the event log trace listener to the collection. Trace.Listeners.Add(myTraceListener) ' Write output to the event log. Trace.WriteLine("Test output") – Brian McCarthy May 10 '11 at 15:50
where will the TextWriterOutput.log file be outputted to? – Brian McCarthy May 10 '11 at 16:01
file will be outputted in the place (folder) where process started. You can also specify full path there. – Taras B Oct 12 '11 at 17:12
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.