I'm trying to add logging in to application. Based on this blog post Logging with Ninject
It blog solves almost all my problems and even more. However there is one small issue that I cannot solve.
How to configure Ninject to always intercept virtual methods (with default interceptor) without configuring it on class or method level?
Bind<IInterceptedTestClass>() .To<InterceptedTestClass>() .Intercept().With<LogInterceptor>();
nor add any atributes to calses or methods.