C# – How to Handle Logging When Creating Libraries for Others

clogging

All. I am creating some libraries for other teams in my company. They all have different logging mechanisms. I want to provide trace information of what my libraries are doing. What should I to achieve this? Thanks

Best Answer

Use the built in Trace mechanism and document the fact.

This way, all they need to do is configure tracing and they can log.

Related Topic