internal events are not displayed in trace admin panel
Posted: 13 Jan 2009, 20:52
Hello,
i am trying to create a java serverside extension, it loads ok and the init and destroy trace info is displayed in the admin trace panel. But i also want to display internal events, and thus i have used this code:
but nothing is displayed when i connect a client to the server and start joining rooms etc.
Olaf[/quote]
i am trying to create a java serverside extension, it loads ok and the init and destroy trace info is displayed in the admin trace panel. But i also want to display internal events, and thus i have used this code:
Code: Select all
public void handleInternalEvent(InternalEventObject ieo)
{
// Your code here
// Simply print the name of the event that was received
String evtName = ieo.getEventName();
trace("Event received: " + evtName);
}Olaf[/quote]