Is there an alternative to tracing in C#/.net ?
I'm speaking about the Microsoft tracing class.
I don't like how tracing adds some many extra lines of code, making it harder to read. It does make debugging easier when our operation guys simply send us the trace. The other alternative that I see is printing the stack trace error in the event log, but this isn't as descriptive.
Is there another option, where I can get the debugging verbosity of a Trace, without having the verbosity in my code ?