2

I was previously using Sentry for maintaining error logs on my C# application. I want to switch to something that is downloadable since I have some sensitive data. Is there any error logging software like sentry but can be hosted by me? Thanks in advance!

user2350631
  • 61
  • 1
  • 5

3 Answers3

5

If you are already familiar with using sentry then you can install it on you own server: https://github.com/getsentry

cutts
  • 574
  • 1
  • 5
  • 20
1

for C# use sentry client: https://github.com/getsentry/raven-csharp also today I fix ssl problem for it: https://github.com/getsentry/raven-csharp/pull/52

razon
  • 3,882
  • 2
  • 33
  • 46
0

Elmah (Error Logging Modules and Handlers) is good for this.

It is very easy to set up. There are various Nuget packages for different storage options. The most basic is to store the files in XML in the application's App_Data folder. Then you can configure access to the pretty web interface via the web.config.

Scott Hanselman has an old but good write-up on it too.

shamp00
  • 11,106
  • 4
  • 38
  • 81
  • Can Elmah be used for windows forms application? – user2350631 Jul 08 '13 at 19:10
  • I think you can with a bit of ingenuity. There's a discussion of various approaches [in answers to this other question](http://stackoverflow.com/questions/841451/using-elmah-in-a-console-application). – shamp00 Jul 08 '13 at 20:22