Reputation: 15692
I need a logging tool for. Net which can change configuration at runtime. What I want to do is the following:
log4net works fine for me, as long as I use XML for configuration, but the API for in-code configuration is not very nice and not very well documented. Can anybody recommend an alternative tool, which fits the above usecase?
cheers, Achim
Upvotes: 2
Views: 249
Reputation: 233
This logging framework should suit your needs: The Object Guy's Logging Framework
Upvotes: 0
Reputation: 3435
The Microsoft Enterprise Library Logging Application Block has a nice fluent interface for configuration in code (since 5.0 or 4.1 i cant remember right now) http://entlib.codeplex.com/
Upvotes: 2