Hi,
there isn't such functionality. In fact it's bad idea, because its just String message. Console only visualizes for user some event's that had been accrued and can't be noted other way.
Its better to get those actions from objects that gives such info. For example, if you want to know when order is submitted to the server, consider this example
public void onMessage(IMessage message) throws JFException {
if (message.getType().equals(IMessage.Type.ORDER_SUBMIT_OK)){
//do something...
}
}
Let us know what exactly you would like to do, so we could give you more specific advise