Are there any frameworks or libraries for logging errors remotely using .Net?

I want all my .Net applications to be able to log unhandled exceptions over the Internet when a connection is available. Are there any libraries that use for this purpose (free / open source preferably)?

+1


a source to share


3 answers


Log4Net will do this, in particular, using Appenders like SmtpAppender .



http://logging.apache.org/log4net/index.html

+5


a source


Loads. log4net might have something, and if not, you can easily write a log4net plugin called WCF webservice or asmx that will log the log somewhere.



+3


a source


+1


a source







All Articles