Hi, I am trying to update the Unity from 4.0 to 5.10, and my logging interceptor did not work, can somebody give me some idea? Thanks. My Container setup/ ```c# container.Register<ICallHandler, LogCallHandler>(nameof(LogCallHandler)); container.AddNewExtension<Interception>(); ``` and all my interface-implementaion registrations are going through the following helper function. ```c# if (typeof(Service).IsInterface) { injectionMembers.Add(new InterceptionBehavior<PolicyInjectionBehavior>()); injectionMembers.Add(new Interceptor<InterfaceInterceptor>()); } var lifetimeManager = registerAsSingleton ? new ContainerControlledLifetimeManager() : null; container.RegisterType<Service, Implementation>(name, lifetimeManager, injectionMembers.ToArray()); ``` and my targetted class are annotated with a `HandlerAttribute`