dbg.append( "[" ).append( hint ).append( "] " );
dbg.append( ".intercept(" ).append( invocation.getClass().getName() ).append( ")" );
dbg.append( "\n Action=" ).append( invocation.getAction().getClass().getName() );
ActionProxy proxy = invocation.getProxy();
dbg.append( "\n Proxy=" ).append( proxy.getClass().getName() );
dbg.append( "\n .namespace =" ).append( proxy.getNamespace() );
dbg.append( "\n .actionName =" ).append( proxy.getActionName() );
dbg.append( "\n .method =" ).append( proxy.getMethod() );
dbg.append( "\n .execute result =" ).append( proxy.getExecuteResult() );
ActionContext context = invocation.getInvocationContext();
dbg.append( "\n InvocationContext=" ).append( context.getClass().getName() );
appendMap( "\n .session=", dbg, context.getSession() );
appendMap( "\n .parameters=", dbg, context.getParameters() );