Trace Class with Event Logging and Http Upload

  • Thread starter Thread starter Pete Smith
  • Start date Start date
P

Pete Smith

Hi,

I'm looking for a Trace Class that logs errors to the Event Log and can send
error reports to me via http.

Each Trace Entry should contain the call stack, exception stack and line
number of the faulting method.

Any suggestions?

Thank in advance
Pete
 
Hello Pete,
Hi,

I'm looking for a Trace Class that logs errors to the Event Log and
can send error reports to me via http.

Each Trace Entry should contain the call stack, exception stack and
line number of the faulting method.

Any suggestions?

log4net with its RemotingAppender comes to mind: http://logging.apache.org/log4net/release/features.html.

Even better would be an async solution; logging over HTTP isn't really desirable
in a single threaded scenario.

Cheers,
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top