PDA

View Full Version : what does "breaking interceptor chain" mean?


stepper
Aug 18th, 2004, 11:27 AM
i was following the example for introducing advice.
everything seems fine, but in the log i see many of those:

Invoking self on invocation [Invocation: method=[public abstract void com.sympedia.cdo.client.CDOPersistable.cdoSetOID(l ong)] args=[Ljava.lang.Object;@84ce7a] target is of class [library.impl.BookImpl]]; breaking interceptor chain

am i in trouble?

cheers
/eike

Rod Johnson
Aug 18th, 2004, 11:35 AM
It means that a DelegatingIntroductionInterceptor is invoking its delegate to satisfy an invocation rather than invoking MethodInvocation.proceed(). This is normal, and not an error.

If the message is higher than DEBUG level I should probably drop it down to DEBUG.

stepper
Aug 18th, 2004, 11:56 AM
it is DEBUG ;-)

thanks
/eike