diff options
| author | mo khan <mo@mokhan.ca> | 2009-10-17 21:13:59 -0600 |
|---|---|---|
| committer | mo khan <mo@mokhan.ca> | 2009-10-17 21:13:59 -0600 |
| commit | 2ae106995890a8b32d863c7c91867768ac84cb56 (patch) | |
| tree | 0299d9ec65c006b758a44abd690b3673b1067c93 | |
| parent | 873512af96d6775f3578b734dee65a3e884f9c89 (diff) | |
removed dead logging.
| -rw-r--r-- | product/Boot/boot/container/registration/proxy_configuration/NotifyProgressInterceptor.cs | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/product/Boot/boot/container/registration/proxy_configuration/NotifyProgressInterceptor.cs b/product/Boot/boot/container/registration/proxy_configuration/NotifyProgressInterceptor.cs index 0d1a6d8..d120055 100644 --- a/product/Boot/boot/container/registration/proxy_configuration/NotifyProgressInterceptor.cs +++ b/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)); |
