Page 1 of 1

internal events are not displayed in trace admin panel

Posted: 13 Jan 2009, 20:52
by olafmol
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:

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);
	}
but nothing is displayed when i connect a client to the server and start joining rooms etc.

Olaf[/quote]

Posted: 19 Jan 2009, 09:23
by Lapo
Very strange. I am able to see any trace coming from the event handler.