Can anybody recommend any open source or free exception .net logging solutions that have the capability to log and email the exceptions to the developer?
This is for a c# winforms application.
Thanks
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
As others already suggested, log4net has this capability and so does nlog.
The Enterprise-library logging block can also be configured to send mails as described here.
I suggest you use the logging abstraction Common.Logging so you can switch between logging implementations without the need to change your code (e.g. switch between log4net, nlog and enterprise-lib).