I'm building a web app and want to enable logging/error tracking.
After reading the old question here, I choose Enterprise Library because I like the flexibility of handling various events/exceptions differently.
It was simple to setup and install. But, I am not sure how to publish the web application. Specifically... since the logging filepath names are currently set up to my dev machine; when I publish I need to change these to the production server?
I'm also unclear if I need to install the enterprise library on the server... or if the dlls that are included with the project are enough?
Another side question is if I can put the Enterprise Library's app.config and a custom wrapper in my own code library... and then simply add a reference to that code library in my web app. Will that affect how the logger works?
Thanks for the help!