We are currently using nLog for logging (which was an arbitrary choice made some months ago so it can be changed if necessary).
nLog can log to a database but requires a ConnectionString. This is an issue for us as we are in an n-tier environment and we have no database access at the Presentation tier (everything goes back to WCF hosted services in the mid-tier).
Does anyone have good recommendations for how I can get logs from a webfarm into a single consolidated repository (SQL, or it could be some other technology, e.g. MongoDb, etc.) that will sitting behind the mid-tier WCF?
Yes, I know that WCF and other issues can occur when trying to get to the logging repository (inaccessibity etc.) and in that case we will configure server based file logging or something to catch that.
I could use some wisdom here please.
Brian