Commit 2ae1069

mo khan <mo@mokhan.ca>
2009-10-18 03:13:59
removed dead logging.
1 parent 873512a
Changed files (1)
product
Boot
boot
container
registration
proxy_configuration
product/Boot/boot/container/registration/proxy_configuration/NotifyProgressInterceptor.cs
@@ -1,5 +1,4 @@
 using Castle.Core.Interceptor;
-using Gorilla.Commons.Infrastructure.Logging;
 using MoMoney.Presentation.Model.messages;
 using MoMoney.Service.Infrastructure.Eventing;
 
@@ -18,10 +17,6 @@ namespace MoMoney.boot.container.registration.proxy_configuration
 
         public void Intercept(IInvocation invocation)
         {
-            this.log().debug("declaring type: {0}", invocation.GetConcreteMethodInvocationTarget().DeclaringType);
-            this.log().debug("target type: {0}", invocation.TargetType);
-            this.log().debug("proxy type: {0}", invocation.Proxy);
-            this.log().debug("invocation target: {0}", invocation.InvocationTarget);
             broker.publish(new StartedRunningCommand(invocation.InvocationTarget));
             invocation.Proceed();
             broker.publish(new FinishedRunningCommand(invocation.InvocationTarget));