public interface MClogHandler
A instance of a class that implements this interface may be registered, using the
MClog.addHandler(MClogHandler)
method, to process log messages from the toolkits logger.
Modifier and Type | Method and Description |
---|---|
void |
receiveLogMessage(MClogInfo logInfo)
Called by the toolkit whenever a message is to be logged.
|
void receiveLogMessage(MClogInfo logInfo)
The toolkit calls this method in the thread that generated the message but the calls are synchronized by the toolkit so that no two calls are made at the same time.
logInfo
- An MClogInfo
object containing information on the message being logged.