Logging on .Net

  • Thread starter Thread starter Plutian
  • Start date Start date
P

Plutian

Hi everyone,

I would like to know there is any tools for logging on .Net and how is the
performance and stability of these tools?

Thx
 
Two excellent tools from Microsoft:
Microsoft.ApplicationBlocks.Logging is a logging framework that relies on
the Enterprise Instrumentation Framework (EIF).
You can download it at:
http://www.microsoft.com/downloads/...45-E56C-42D6-BBD5-29F0D5CD7F65&displaylang=en

Also, if all you are interested in is a subset of logging commonly called
Exception Handling, there is an application block that is easier to set up
and use that is not tailored to all of the logging tasks, but is good for
recording errors:
http://www.microsoft.com/downloads/...FamilyID=8CA8EB6E-6F4A-43DF-ADEB-8F22CA173E02

Source code included... both frameworks are extendable. Well debugged and
completely stable.

-- Nick
 
Back
Top