public interface IJCEventLog
Register an implementation with JCOBridge.RegisterEventLog(org.mases.jcobridge.IJCEventLog) to receive
runtime diagnostic messages from the bridge. Two categories of messages are delivered:
A ready-made console implementation is available as JCConsoleEventLog.
For production use, implement this interface to route messages to your application
logger.
See also: JCOReflector for usage examples.
| Modifier and Type | Method and Description |
|---|---|
void |
EventLog(String msg)
Receives a general bridge diagnostic event message.
|
void |
FusionLog(String msg)
Receives a CLR assembly fusion log message.
|
void FusionLog(String msg)
msg - the fusion log entry from the CLR assembly resolver.void EventLog(String msg)
msg - the diagnostic message from the JCOBridge runtime.