| java.lang.Object com.tc.util.LoggingInvocationHandler
LoggingInvocationHandler | public class LoggingInvocationHandler implements InvocationHandler(Code) | | An
InvocationHandler that logs every call made through it, along with the thread that made it. This can be
very useful for debugging in certain situations.
This class will also usefully create proxy wrappers around any objects returned from any calls that implement any of
the interfaces supplied in the furtherProxies argument to the constructor. This allows you to
'capture' an entire object graph resulting from a series of calls pretty easily.
|
LoggingInvocationHandler | public LoggingInvocationHandler(Object delegate, Writer dest, Class[] furtherProxies)(Code) | | |
|
|