InterceptorForward fwd = context.getInterceptorForward();
if ( _log.isDebugEnabled() )
{
Interceptor overridingInterceptor = context.getOverridingInterceptor();
StringBuffer msg = new StringBuffer();
msg.append( "Action interceptor " );
msg.append( overridingInterceptor.getClass().getName() );
msg.append( " before action " );
msg.append( actionName );
msg.append( ": forwarding to " );
msg.append( fwd != null ? fwd.getPath() : "null [no forward]" );
_log.debug( msg.toString() );