Click here to Skip to main content
15,886,799 members
Articles / Web Development / ASP.NET

BaseLib.Tracer: Tracing Done Right

Rate me:
Please Sign up or sign in to vote.
4.30/5 (10 votes)
31 Mar 2023Public Domain9 min read 30.3K   24  
Near real time, multi threading safe tracing for any .NET technology
Most programs need a way to collect errors, exceptions and other information, like what happened before an exception occurred. Collecting this information is called tracing. DotNet has some tracing functionality, but it is much too slow. Having tracing active should not slow down the application, which can be achieved by writing the tracing information first in RAM and process it later on a different thread.

Views

Daily Counts

License

This article, along with any associated source code and files, is licensed under A Public Domain dedication


Written By
Software Developer (Senior)
Singapore Singapore
Retired SW Developer from Switzerland living in Singapore

Interested in WPF projects.

Comments and Discussions