hi,
I am logging application exception in database table using microsoft enterprise library. To log that exception i have created custom database trace lisner & log the exception into database. Now I when any exception come in saving log in database i want to enter 2 entry in event logger 1>Why custom database listener fail. 2>And original log.
<specialSources> <allEvents switchValue="All" name="All Events" /> <notProcessed switchValue="All" name="Unprocessed Category"> <listeners> <add name="Event Log Listener" /> </listeners> </notProcessed> <errors switchValue="All" name="Logging Errors &amp; Warnings"> <listeners> <add name="Event Log Listener" /> <add name="Event Log Trace Listener" /> </ ...

Go to the complete details ...