I\'m trying to get log4net integration for Castle Windsor working. I wrote my class with an public property of type ILogger and took the configuration in my app
ILogger
Note that you can use the following in recent Castle versions:
container.AddFacility(f => f.UseLog4Net().WithAppConfig());
This will use Log4net for logging and search for the log4net config section in the application configuration file.