Hello, I have created a WCF service application that essentially is just an interface to an underlying api. So, this WCF service just contains the .svc file and web.config. The api it references has log4net logging in it but requires the consumer to configure it and call the XmlConfigurator.Configure() method to actually get logging running. Without adding code into my service, is there a way to get this going? The issue is that I want to keep my service as code-free as possible and, from what I know, the only way to start the logging is with the XmlConfigurator.Configure() method call. Am I missing something?
I'm sure I have left important details out so feel free to ask away. TIA! rbr
