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,
 
Back
Top